diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-02-04 20:43:10 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-02-04 20:43:10 (GMT) |
commit | 89638fbc9961bd9a1e9cb7bc25e5f739936e8a43 (patch) | |
tree | b6089e817d6457c41a730842661e95ef464739bd | |
parent | 2514ba72e53473f8dd424efdbef34287c8a3fd56 (diff) | |
download | Doxygen-89638fbc9961bd9a1e9cb7bc25e5f739936e8a43.zip Doxygen-89638fbc9961bd9a1e9cb7bc25e5f739936e8a43.tar.gz Doxygen-89638fbc9961bd9a1e9cb7bc25e5f739936e8a43.tar.bz2 |
Missing & and chars after " in tree of chm documentation
In the chm-doxygen manual we see that for:
- the command \& the & is missing
- commands containing a " all text is missing after this "
These are known limitations of the chm format (see e.g.
http://www.helpware.net/htmlhelp/hhwreadme.htm)
-rw-r--r-- | src/htmlhelp.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index aa0727c..50aea83 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -35,6 +35,7 @@ #include "groupdef.h" #include "memberdef.h" #include "filedef.h" +#include "util.h" //---------------------------------------------------------------------------- @@ -626,7 +627,7 @@ void HtmlHelp::addContentsItem(bool isDir, } int i; for (i=0;i<dc;i++) cts << " "; cts << "<LI><OBJECT type=\"text/sitemap\">"; - cts << "<param name=\"Name\" value=\"" << recode(name) << "\">"; + cts << "<param name=\"Name\" value=\"" << convertToHtml(recode(name),TRUE) << "\">"; if (file) // made file optional param - KPW { if (file && (file[0]=='!' || file[0]=='^')) // special markers for user defined URLs |