diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-03-28 20:22:32 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-03-28 20:22:32 (GMT) |
commit | 335d3d25e07ddcf7c00ba3b2550858a2374dd3db (patch) | |
tree | 26a5d95818e3e12ac2811903fe815044fa7f6d73 /BuildTools/DocBook/Stylesheets/html/docbook.xsl | |
parent | 3afa4f741c26360245dc313bc368f508b26a6b96 (diff) | |
download | swift-contrib-335d3d25e07ddcf7c00ba3b2550858a2374dd3db.zip swift-contrib-335d3d25e07ddcf7c00ba3b2550858a2374dd3db.tar.bz2 |
Moved DocBook module.
Diffstat (limited to 'BuildTools/DocBook/Stylesheets/html/docbook.xsl')
-rw-r--r-- | BuildTools/DocBook/Stylesheets/html/docbook.xsl | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/BuildTools/DocBook/Stylesheets/html/docbook.xsl b/BuildTools/DocBook/Stylesheets/html/docbook.xsl new file mode 100644 index 0000000..c97545e --- /dev/null +++ b/BuildTools/DocBook/Stylesheets/html/docbook.xsl @@ -0,0 +1,34 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + + <!-- Include other stylesheets --> + <xsl:import href="docbook-xsl:/html/docbook.xsl"/> + <xsl:include href="../common/params.xsl" /> + <xsl:include href="../common/inline.xsl" /> + <xsl:output method="html" encoding="UTF-8" indent="no"/> + + <xsl:param name="use.extensions" select="0"/> + <xsl:param name="section.autolabel" select="'1'"/> + + <xsl:param name="generate.toc"> + appendix nop + article/appendix nop + article toc,title + book toc,title + chapter nop + part nop + preface nop + qandadiv nop + qandaset nop + reference nop + sect1 nop + sect2 nop + sect3 nop + sect4 nop + sect5 nop + section nop + set nop + </xsl:param> + +</xsl:stylesheet> + |