summaryrefslogtreecommitdiff
path: root/build/stylesheets/style-common.xsl
blob: 910299f9142191a4dbc96640806d5951e6263552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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>

<!-- We don't want warnings about missing IDs -->
<xsl:param name="id.warnings">0</xsl:param>

</xsl:stylesheet>