summaryrefslogtreecommitdiffstats
path: root/tools/user_guide.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/user_guide.xsl')
-rwxr-xr-xtools/user_guide.xsl15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/user_guide.xsl b/tools/user_guide.xsl
index cbb51b5..79e8c5a 100755
--- a/tools/user_guide.xsl
+++ b/tools/user_guide.xsl
@@ -1,4 +1,7 @@
<?xml version='1.0'?>
+<!DOCTYPE xsl:stylesheet [
+<!ENTITY css SYSTEM "user_guide.css">
+]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'>
@@ -34,4 +37,16 @@
<xsl:param name="using.chunker" select="0"/>
+<!-- Add CSS stylesheet content to the HTML header -->
+
+<xsl:template name="user.head.content">
+<style type="text/css">
+&css;
+</style>
+</xsl:template>
+
+<!-- Nice HTML output -->
+
+<xsl:param name="chunker.output.indent">yes</xsl:param>
+
</xsl:stylesheet>