···11<!-- manpage-bold-literal.xsl:
22 special formatting for manpages rendered from asciidoc+docbook -->
33<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
44+ xmlns:d="http://docbook.org/ns/docbook"
45 version="1.0">
5667<!-- render literal text as bold (instead of plain or monospace);
78 this makes literal text easier to distinguish in manpages
89 viewed on a tty -->
99-<xsl:template match="literal">
1010+<xsl:template match="literal|d:literal">
1011 <xsl:value-of select="$git.docbook.backslash"/>
1112 <xsl:text>fB</xsl:text>
1213 <xsl:apply-templates/>