diff options
author | James Peach <jpeach@samba.org> | 2006-12-27 01:40:34 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:47:23 -0500 |
commit | 80e97e35377eaf491db3cabac137ad570b5f8efc (patch) | |
tree | a8a9eaa1e960f00568c6c265c6ca6f9071ff41ca /docs/xslt | |
parent | 5ab3d0a83f404e99a23fe96ca064fa9e2bd5ce26 (diff) | |
download | samba-80e97e35377eaf491db3cabac137ad570b5f8efc.tar.gz samba-80e97e35377eaf491db3cabac137ad570b5f8efc.tar.bz2 samba-80e97e35377eaf491db3cabac137ad570b5f8efc.zip |
nroff .fi and .nf directive need to be at the beginning of a line.
(This used to be commit 400179c9f783393ebbf683d710e920157d56bb7b)
Diffstat (limited to 'docs/xslt')
-rw-r--r-- | docs/xslt/man.xsl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/xslt/man.xsl b/docs/xslt/man.xsl index 91e6ebc9a8..00d0948de5 100644 --- a/docs/xslt/man.xsl +++ b/docs/xslt/man.xsl @@ -121,9 +121,13 @@ </xsl:template> <xsl:template match="informalexample|screen|programlisting"> - <xsl:text>.nf </xsl:text> + <xsl:text> +.nf + </xsl:text> <xsl:apply-templates/> - <xsl:text>.fi </xsl:text> + <xsl:text> +.fi + </xsl:text> </xsl:template> <xsl:template match="//emphasis"> |