]> git.ipfire.org Git - thirdparty/git.git/blobdiff - Documentation/manpage-bold-literal.xsl
Merge branch 'bc/doc-use-docbook-5'
[thirdparty/git.git] / Documentation / manpage-bold-literal.xsl
index 608eb5df628141eeeb67e101e732263c34257b61..94d6c1b54565f88c56c489d604150ed18b8a49b3 100644 (file)
@@ -1,12 +1,13 @@
 <!-- manpage-bold-literal.xsl:
      special formatting for manpages rendered from asciidoc+docbook -->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+               xmlns:d="http://docbook.org/ns/docbook"
                version="1.0">
 
 <!-- render literal text as bold (instead of plain or monospace);
      this makes literal text easier to distinguish in manpages
      viewed on a tty -->
-<xsl:template match="literal">
+<xsl:template match="literal|d:literal">
        <xsl:value-of select="$git.docbook.backslash"/>
        <xsl:text>fB</xsl:text>
        <xsl:apply-templates/>