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
<!-- <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>
<!-- ==================================================================== -->
<!-- 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>