wxHtmlHelpController

Hi,

I've integrated wxHtmlHelpController into my application running under
GNU/Linux, but am having a hard time figuring out how to automatically
generate the htmlhelp files from my docbook v5 usermanual.xml file.
I'm using xsltproc in order to convert it into htmlhelp:

xsltproc /usr/share/xml/docbook/stylesheet/docbook-xsl/htmlhelp/
profile-htmlhelp.xsl usermanual.xml

The htmlhelp.hhp file is parsed by the wxHtmlHelpController, and TOC
and Index is shown as expected - except that every page displays raw
HTML code instead of a properly rendered page. I've tried replacing
some of the auto-generated .html files with extremely simple HTML
syntax, but still it is displayed as raw HTML tags.

I've also tried using asciidoc for generating htmlhelp files from a
simple skeleton .txt document, but the resulting htmlhelp is also
rendered as raw HTML in the wxHtmlHelpController.

I cannot figure out why this is not working as expected.