summaryrefslogtreecommitdiff
path: root/docbook-xsl/htmlhelp.xsl
diff options
context:
space:
mode:
authorsrackham <srackham@petrel>2007-10-23 14:23:41 +1300
committersrackham <srackham@petrel>2007-10-23 14:23:41 +1300
commite3ac3be3f1080ab31c259f4f4242a5981c70a26e (patch)
tree5f3fb88e1cc4cf7d0fdf2bc3b64c1e002ed49364 /docbook-xsl/htmlhelp.xsl
downloadasciidoc-e3ac3be3f1080ab31c259f4f4242a5981c70a26e.tar.gz
Initial commit.
Diffstat (limited to 'docbook-xsl/htmlhelp.xsl')
-rw-r--r--docbook-xsl/htmlhelp.xsl17
1 files changed, 17 insertions, 0 deletions
diff --git a/docbook-xsl/htmlhelp.xsl b/docbook-xsl/htmlhelp.xsl
new file mode 100644
index 0000000..b9b18af
--- /dev/null
+++ b/docbook-xsl/htmlhelp.xsl
@@ -0,0 +1,17 @@
+<!--
+ Generates chunked HTML Help HTML documents from DocBook XML source using
+ DocBook XSL stylesheets.
+
+ NOTE: The URL reference to the current DocBook XSL stylesheets is
+ rewritten to point to the copy on the local disk drive by the XML catalog
+ rewrite directives so it doesn't need to go out to the Internet for the
+ stylesheets. This means you don't need to edit the <xsl:import> elements on
+ a machine by machine basis.
+-->
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"/>
+<xsl:import href="common.xsl"/>
+<xsl:param name="base.dir" select="'./htmlhelp/'"/>
+<xsl:param name="htmlhelp.hhp" select="'asciidoc.hhp'"/>
+<xsl:param name="suppress.navigation" select="1"/>
+</xsl:stylesheet>