Parsing .HHK and .HHC files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to parse the contents and indecies in the .HHK and .HHC files
outputted by RoboHelp. An example of the output is:

<html>
<!-- Sitemap 1.0 -->
<object type="text/site properties">
<param name="FrameName" value="bsscright">
<param name="SiteType" value="toc">
<param name="Image Width" value="16">
</object>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Cars">
</object>
<ul>
<li><object type="text/sitemap">
<param name="Name" value="Jeep">
<param name="Local" value="Cars/Jeep.htm">
</object>
</ul>
</ul>
</html>

If there were an end tag for param, I could use the xml parser without a
read error. Does anyone have any idea of either how to use the XML parser
while getting around this little problem or another way to parse the files?

Thank you for any help.
Susan
 
Back
Top