From 92d277d12e5023d9b84407bb727311e38a98715d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 31 Oct 2015 14:47:28 +0200 Subject: Parse and enter documentation variables --- cli/html.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cli/html.cxx') diff --git a/cli/html.cxx b/cli/html.cxx index dd49a91..1f84fdd 100644 --- a/cli/html.cxx +++ b/cli/html.cxx @@ -82,6 +82,9 @@ namespace virtual void traverse (type& ds) { + if (ds.name ().compare (0, 3, "doc") != 0) // Ignore doc variables. + return; + // n = 1 - common doc string // n = 2 - arg string, common doc string // n > 2 - arg string, usage string, man string -- cgit v1.1