Tommy
2009-01-31 06:52:52 UTC
Question, but I beat my brains on this because it appears that I have
to conform to how the compiler is reading the hhc file, I am manually
editing the hhc file to create my table of contents.
I noticed that the <UL> and <LI> originally created were not quite in
HTML expected format where it doesn't use </LI> tags.
For example, AFAIK, this is correct usage
<UL>
<LI>xxxx</LI>
<LI>
<UL>
<LI>xxxx</LI>
<LI>xxx</LI>
</UL>
</LI>
</UL>
However, what is written is without </LI> terminating tags:
<UL>
<LI>xxxx
<LI>
<UL>
<LI>xxxx
<LI>xxx
</UL>
</UL>
Can I use the correct format without a problem or it going to create
issues?
The reason is that we create HTML files for the CHM creation but also
putting the HTML files on our web server. We have a utility to takes
the HHC to create a HTML file and my parser gets confused when its
using he HelpHTML format for HHC outlines.
Suggestions?
Thanks
to conform to how the compiler is reading the hhc file, I am manually
editing the hhc file to create my table of contents.
I noticed that the <UL> and <LI> originally created were not quite in
HTML expected format where it doesn't use </LI> tags.
For example, AFAIK, this is correct usage
<UL>
<LI>xxxx</LI>
<LI>
<UL>
<LI>xxxx</LI>
<LI>xxx</LI>
</UL>
</LI>
</UL>
However, what is written is without </LI> terminating tags:
<UL>
<LI>xxxx
<LI>
<UL>
<LI>xxxx
<LI>xxx
</UL>
</UL>
Can I use the correct format without a problem or it going to create
issues?
The reason is that we create HTML files for the CHM creation but also
putting the HTML files on our web server. We have a utility to takes
the HHC to create a HTML file and my parser gets confused when its
using he HelpHTML format for HHC outlines.
Suggestions?
Thanks