From 5f7743da2fa5791e624b41ea1a749ccfa58a8f53 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 30 Oct 2015 10:47:45 +0200 Subject: Implement scope documentation generation in HTML --- cli/source.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli/source.cxx') diff --git a/cli/source.cxx b/cli/source.cxx index d5c3fd3..19cdb82 100644 --- a/cli/source.cxx +++ b/cli/source.cxx @@ -208,7 +208,7 @@ namespace l++; // ' ' seperator if (doc.size () > 0) - l += format (doc[0], ot_plain).size (); + l += format (ot_plain, doc[0], false).size (); else l += 5; // } @@ -268,7 +268,7 @@ namespace if (doc.size () > 0) { - string s (format (doc[0], ot_plain)); + string s (format (ot_plain, doc[0], false)); os << escape_str (s); l += s.size (); } @@ -306,7 +306,7 @@ namespace // Format the documentation string. // - d = format (d, ot_plain); + d = format (ot_plain, d, false); if (!d.empty ()) { -- cgit v1.1