Mark Erbaugh wrote:
I've used DocBook to create HTMLHelp for use with helpviewer.py included
in the wxPython distribution.The HTML files generated work fine using Firefox.
In helpviewer, when I click on a link that goes to a different page, the
new page comes us, but I get a warning dialog:the HTML anchor XXXX does not exist.
In the source page my code is:
<link linkend="XXX">text</link>
On the destination page, I place an id attribute in the title entity:
<title id="XXX">This is the Title</title>
wxHTML is pretty limited on what tags and attributes are supported and used. Try using the standard anchor tag instead, like this:
<a name="XXX">This is the title</a>
Does using the title tag with an id actually work like an anchor in the browser? Or is it implementing it with some javascript or something added to the generated page?
···
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!