aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/ref-manual-customization.xsl
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2014-05-22 11:31:41 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-30 16:32:14 +0100
commit59d810eacae56c126e819a40e017d2819513dc72 (patch)
treecefaf1349472c58449b6985afae5b5df110f751e /documentation/ref-manual/ref-manual-customization.xsl
parentba2221f71667e36037f85e113281de8133c1efc4 (diff)
downloadopenembedded-core-contrib-59d810eacae56c126e819a40e017d2819513dc72.tar.gz
ref-manual: Added new chapter on QA error and warning messages.
This new chapter is a reference on the default configuration QA check messages you can get from errors and warnings. (From yocto-docs rev: 04d766b4e1235ae46df38c4b296cb2729b6a439f) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 @@
<?xml version='1.0'?>
<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">
-
+
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" />
<xsl:param name="html.stylesheet" select="'ref-style.css'" />
@@ -8,4 +8,14 @@
<xsl:param name="appendix.autolabel" select="A" />
<xsl:param name="section.autolabel" select="1" />
<xsl:param name="section.label.includes.component.label" select="1" />
+
+ <xsl:attribute-set name="normal.para.spacing">
+ <xsl:attribute name="text-indent">
+ <xsl:choose>
+ <xsl:when test="self::para">2em</xsl:when>
+ <xsl:otherwise>inherit</xsl:otherwise>
+ </xsl:choose>
+ </xsl:attribute>
+ </xsl:attribute-set>
+
</xsl:stylesheet>