summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/ref-manual-customization.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/ref-manual/ref-manual-customization.xsl')
-rw-r--r--documentation/ref-manual/ref-manual-customization.xsl12
1 files changed, 11 insertions, 1 deletions
diff --git a/documentation/ref-manual/ref-manual-customization.xsl b/documentation/ref-manual/ref-manual-customization.xsl
index 3ad3a315c0..f1e6e0dcf8 100644
--- a/documentation/ref-manual/ref-manual-customization.xsl
+++ b/documentation/ref-manual/ref-manual-customization.xsl
@@ -1,6 +1,6 @@
1<?xml version='1.0'?> 1<?xml version='1.0'?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0"> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
3 3
4 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" /> 4 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" />
5 5
6 <xsl:param name="html.stylesheet" select="'ref-style.css'" /> 6 <xsl:param name="html.stylesheet" select="'ref-style.css'" />
@@ -8,4 +8,14 @@
8 <xsl:param name="appendix.autolabel" select="A" /> 8 <xsl:param name="appendix.autolabel" select="A" />
9 <xsl:param name="section.autolabel" select="1" /> 9 <xsl:param name="section.autolabel" select="1" />
10 <xsl:param name="section.label.includes.component.label" select="1" /> 10 <xsl:param name="section.label.includes.component.label" select="1" />
11
12 <xsl:attribute-set name="normal.para.spacing">
13 <xsl:attribute name="text-indent">
14 <xsl:choose>
15 <xsl:when test="self::para">2em</xsl:when>
16 <xsl:otherwise>inherit</xsl:otherwise>
17 </xsl:choose>
18 </xsl:attribute>
19 </xsl:attribute-set>
20
11</xsl:stylesheet> 21</xsl:stylesheet>