Git fork

Merge branch 'bc/doc-use-docbook-5'

Finishing touches to the recent update to the build procedure for
the documentation.

* bc/doc-use-docbook-5:
manpage-bold-literal.xsl: match for namespaced "d:literal" in template

+2 -1
+2 -1
Documentation/manpage-bold-literal.xsl
··· 1 1 <!-- manpage-bold-literal.xsl: 2 2 special formatting for manpages rendered from asciidoc+docbook --> 3 3 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 4 + xmlns:d="http://docbook.org/ns/docbook" 4 5 version="1.0"> 5 6 6 7 <!-- render literal text as bold (instead of plain or monospace); 7 8 this makes literal text easier to distinguish in manpages 8 9 viewed on a tty --> 9 - <xsl:template match="literal"> 10 + <xsl:template match="literal|d:literal"> 10 11 <xsl:value-of select="$git.docbook.backslash"/> 11 12 <xsl:text>fB</xsl:text> 12 13 <xsl:apply-templates/>