diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-08-10 00:49:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-08-10 01:03:51 -0700 |
commit | 524e5ffcf41a67ec113a9c3730ddc8fb8d3317f5 (patch) | |
tree | e70cce84a268c4e0eba81f663e0ff04ba4f6b72e | |
parent | Fix an illustration in git-rev-parse.txt (diff) | |
download | tgif-524e5ffcf41a67ec113a9c3730ddc8fb8d3317f5.tar.xz |
tweak manpage formatting
This attempts to force fixed-font in manpages for literal
blocks. I have tested this with docbook 1.71 and it seems to
work as expected.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/callouts.xsl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Documentation/callouts.xsl b/Documentation/callouts.xsl index 6a361a2136..7941af7878 100644 --- a/Documentation/callouts.xsl +++ b/Documentation/callouts.xsl @@ -27,4 +27,17 @@ </xsl:if> </xsl:template> +<xsl:template match="literallayout[@class='monospaced']"> + <xsl:text>.RS</xsl:text> + <xsl:if test="not($man.indent.width = '')"> + <xsl:text> </xsl:text> + <xsl:value-of select="$man.indent.width"/> + </xsl:if> + <xsl:text> </xsl:text> + <xsl:text> .ft C .nf </xsl:text> + <xsl:apply-templates/> + <xsl:text> .fi .ft </xsl:text> + <xsl:text>.RE </xsl:text> +</xsl:template> + </xsl:stylesheet> |