162306a36Sopenharmony_ci<!-- manpage-bold-literal.xsl:
262306a36Sopenharmony_ci     special formatting for manpages rendered from asciidoc+docbook -->
362306a36Sopenharmony_ci<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
462306a36Sopenharmony_ci		version="1.0">
562306a36Sopenharmony_ci
662306a36Sopenharmony_ci<!-- render literal text as bold (instead of plain or monospace);
762306a36Sopenharmony_ci     this makes literal text easier to distinguish in manpages
862306a36Sopenharmony_ci     viewed on a tty -->
962306a36Sopenharmony_ci<xsl:template match="literal">
1062306a36Sopenharmony_ci	<xsl:value-of select="$git.docbook.backslash"/>
1162306a36Sopenharmony_ci	<xsl:text>fB</xsl:text>
1262306a36Sopenharmony_ci	<xsl:apply-templates/>
1362306a36Sopenharmony_ci	<xsl:value-of select="$git.docbook.backslash"/>
1462306a36Sopenharmony_ci	<xsl:text>fR</xsl:text>
1562306a36Sopenharmony_ci</xsl:template>
1662306a36Sopenharmony_ci
1762306a36Sopenharmony_ci</xsl:stylesheet>
18