Skip to content

Commit 1d34d42

Browse files
committed
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 parents dac1d83 + 55aca51 commit 1d34d42

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Documentation/manpage-bold-literal.xsl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
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"
4+
xmlns:d="http://docbook.org/ns/docbook"
45
version="1.0">
56

67
<!-- 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 -->
9-
<xsl:template match="literal">
10+
<xsl:template match="literal|d:literal">
1011
<xsl:value-of select="$git.docbook.backslash"/>
1112
<xsl:text>fB</xsl:text>
1213
<xsl:apply-templates/>

0 commit comments

Comments
 (0)