Commit 5a776843 authored by Joe Orton's avatar Joe Orton
Browse files

Merge r1834470 from trunk:

Render <code> in bold in man pages, matching commonly used style in
both help2man and the standard DocBook XSL stylesheets for man output.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1835219 13f79535-47bb-0310-9956-ffa450edef68
parent f78ad6f5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -264,7 +264,7 @@
<!-- <strong>                                                             -->
<!-- show it somewhat special (bold)                                      -->
<!-- ==================================================================== -->
<xsl:template match="strong">
<xsl:template match="strong|code">
<xsl:text>\fB</xsl:text>
    <xsl:apply-templates />
<xsl:text>\fR</xsl:text>
@@ -373,7 +373,7 @@ FATAL: only tables with two (2) columns are supported.
<!-- ==================================================================== -->
<!-- pass through content                                                 -->
<!-- ==================================================================== -->
<xsl:template match="a|code|module|table|program|glossary">
<xsl:template match="a|module|table|program|glossary">
<xsl:apply-templates />
</xsl:template>