summaryrefslogtreecommitdiff
path: root/build/stylesheets/style-common.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'build/stylesheets/style-common.xsl')
-rw-r--r--build/stylesheets/style-common.xsl21
1 files changed, 21 insertions, 0 deletions
diff --git a/build/stylesheets/style-common.xsl b/build/stylesheets/style-common.xsl
new file mode 100644
index 000000000..ce019cc99
--- /dev/null
+++ b/build/stylesheets/style-common.xsl
@@ -0,0 +1,21 @@
+<?xml version='1.0'?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+<!-- Some advanced features, not everybody supports it though -->
+<!-- <xsl:param name="use.extensions">1</xsl:param> -->
+
+<!-- Sections are not numbered by default. We want to switch numbering on -->
+<xsl:param name="section.autolabel">1</xsl:param>
+
+<!-- We want continuous numbering (don't restart with new chapter) -->
+<xsl:param name="section.label.includes.component.label">1</xsl:param>
+
+<!-- We want gray background in examples -->
+<!-- No we don't; this option has been obsoleted.
+<xsl:param name="shade.verbatim">1</xsl:param>
+-->
+
+<!-- Indicate we will be including our own custom style sheet -->
+<xsl:param name="html.stylesheet">install.css</xsl:param>
+
+</xsl:stylesheet>