diff options
author | Hans Bolinder <[email protected]> | 2011-09-27 14:47:13 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2011-09-28 08:53:55 +0200 |
commit | 1a8b1566f19578d6bd02ecdb753b8b8158c723bf (patch) | |
tree | a708e04a74fe7d23ce94c0b7bd50dd7d7325674d /lib/erl_docgen/priv | |
parent | 58fe7b5e48ad95f14b05aae43a3a32122695da4e (diff) | |
download | otp-1a8b1566f19578d6bd02ecdb753b8b8158c723bf.tar.gz otp-1a8b1566f19578d6bd02ecdb753b8b8158c723bf.tar.bz2 otp-1a8b1566f19578d6bd02ecdb753b8b8158c723bf.zip |
Improve indentation in manpages
The indentation after `Warning:' and `Note:' in manpages has been
improved.
Diffstat (limited to 'lib/erl_docgen/priv')
-rw-r--r-- | lib/erl_docgen/priv/xsl/db_man.xsl | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/lib/erl_docgen/priv/xsl/db_man.xsl b/lib/erl_docgen/priv/xsl/db_man.xsl index c7efced3d2..1df96caa36 100644 --- a/lib/erl_docgen/priv/xsl/db_man.xsl +++ b/lib/erl_docgen/priv/xsl/db_man.xsl @@ -512,18 +512,42 @@ <!-- Note --> <xsl:template match="note"> - <xsl:text> .SS Note:</xsl:text> + <xsl:text> .LP </xsl:text> + <xsl:text> .RS -4</xsl:text> + <xsl:text> .B </xsl:text> + <xsl:text>Note:</xsl:text> + <xsl:text> .RE</xsl:text> <xsl:apply-templates/> <xsl:text> </xsl:text> </xsl:template> <!-- Warning --> <xsl:template match="warning"> - <xsl:text> .SS Warning:</xsl:text> + <xsl:text> .LP </xsl:text> + <xsl:text> .RS -4</xsl:text> + <xsl:text> .B </xsl:text> + <xsl:text>Warning:</xsl:text> + <xsl:text> .RE</xsl:text> <xsl:apply-templates/> <xsl:text> </xsl:text> </xsl:template> + <xsl:template match="warning/p | note/p"> + <xsl:variable name="content"> + <xsl:text> </xsl:text> + <xsl:apply-templates/> + </xsl:variable> + <xsl:choose> + <xsl:when test="position() = 1"> + <xsl:value-of select="$content"/> + </xsl:when> + <xsl:otherwise> + <xsl:text> .LP</xsl:text> + <xsl:value-of select="$content"/> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + <!-- Paragraph --> <xsl:template match="p"> <xsl:text> .LP </xsl:text> |