Commit 89638fbc authored by Dimitri van Heesch's avatar Dimitri van Heesch

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)
parent 2514ba72
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include "groupdef.h" #include "groupdef.h"
#include "memberdef.h" #include "memberdef.h"
#include "filedef.h" #include "filedef.h"
#include "util.h"
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
...@@ -626,7 +627,7 @@ void HtmlHelp::addContentsItem(bool isDir, ...@@ -626,7 +627,7 @@ void HtmlHelp::addContentsItem(bool isDir,
} }
int i; for (i=0;i<dc;i++) cts << " "; int i; for (i=0;i<dc;i++) cts << " ";
cts << "<LI><OBJECT type=\"text/sitemap\">"; 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) // made file optional param - KPW
{ {
if (file && (file[0]=='!' || file[0]=='^')) // special markers for user defined URLs if (file && (file[0]=='!' || file[0]=='^')) // special markers for user defined URLs
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment