18c2ecf20Sopenharmony_ci<!-- manpage-bold-literal.xsl:
28c2ecf20Sopenharmony_ci     special formatting for manpages rendered from asciidoc+docbook -->
38c2ecf20Sopenharmony_ci<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
48c2ecf20Sopenharmony_ci		version="1.0">
58c2ecf20Sopenharmony_ci
68c2ecf20Sopenharmony_ci<!-- render literal text as bold (instead of plain or monospace);
78c2ecf20Sopenharmony_ci     this makes literal text easier to distinguish in manpages
88c2ecf20Sopenharmony_ci     viewed on a tty -->
98c2ecf20Sopenharmony_ci<xsl:template match="literal">
108c2ecf20Sopenharmony_ci	<xsl:value-of select="$git.docbook.backslash"/>
118c2ecf20Sopenharmony_ci	<xsl:text>fB</xsl:text>
128c2ecf20Sopenharmony_ci	<xsl:apply-templates/>
138c2ecf20Sopenharmony_ci	<xsl:value-of select="$git.docbook.backslash"/>
148c2ecf20Sopenharmony_ci	<xsl:text>fR</xsl:text>
158c2ecf20Sopenharmony_ci</xsl:template>
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_ci</xsl:stylesheet>
18