> > The following stylesheet cannot be used to generate WebHelp: > > ... > > As documented in http://www.xmlmind.com/ditac/_** > distrib/doc/manual/manual-6.**html<http://www.xmlmind.com/ditac/_distrib/doc/manual/manual-6.html>, > ditac-xsl:webhelp/webhelp.xsl is used to generate Web Help files, which > are then compiled using XMLmind Web Help Compiler.
Apologies, I assumed that you could override the base xhtml stylesheet because it was referenced by each of the other deliverables. Thanks for pointing me in the right direction. For any future readers of this thread here is how I defined the HTML overrides for my project. [customize-html-helper.xsl - the actual overrides] <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="2.0"> <!-- neat stuff --> </xsl:stylesheet> [customize-webhelp.xsl] <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="2.0"> <xsl:import href="ditac-xsl:webhelp/webhelp.xsl"/> <xsl:import href="customize-html-helper.xsl"/> </xsl:stylesheet> [customize-xhtml.xsl] <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="2.0"> <xsl:import href="ditac-xsl:xhtml/xhtml.xsl"/> <xsl:import href="customize-html-helper.xsl"/> </xsl:stylesheet>
-- XMLmind DITA Converter Support List [email protected] http://www.xmlmind.com/mailman/listinfo/ditac-support

