Back to home page

OSCL-LXR

 
 

    


0001 <!-- manpage-bold-literal.xsl:
0002      special formatting for manpages rendered from asciidoc+docbook -->
0003 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
0004                 version="1.0">
0005 
0006 <!-- render literal text as bold (instead of plain or monospace);
0007      this makes literal text easier to distinguish in manpages
0008      viewed on a tty -->
0009 <xsl:template match="literal">
0010         <xsl:value-of select="$git.docbook.backslash"/>
0011         <xsl:text>fB</xsl:text>
0012         <xsl:apply-templates/>
0013         <xsl:value-of select="$git.docbook.backslash"/>
0014         <xsl:text>fR</xsl:text>
0015 </xsl:template>
0016 
0017 </xsl:stylesheet>