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 templatemaint
commit
1d34d425d4
|
@ -1,12 +1,13 @@
|
||||||
<!-- manpage-bold-literal.xsl:
|
<!-- manpage-bold-literal.xsl:
|
||||||
special formatting for manpages rendered from asciidoc+docbook -->
|
special formatting for manpages rendered from asciidoc+docbook -->
|
||||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
|
xmlns:d="http://docbook.org/ns/docbook"
|
||||||
version="1.0">
|
version="1.0">
|
||||||
|
|
||||||
<!-- render literal text as bold (instead of plain or monospace);
|
<!-- render literal text as bold (instead of plain or monospace);
|
||||||
this makes literal text easier to distinguish in manpages
|
this makes literal text easier to distinguish in manpages
|
||||||
viewed on a tty -->
|
viewed on a tty -->
|
||||||
<xsl:template match="literal">
|
<xsl:template match="literal|d:literal">
|
||||||
<xsl:value-of select="$git.docbook.backslash"/>
|
<xsl:value-of select="$git.docbook.backslash"/>
|
||||||
<xsl:text>fB</xsl:text>
|
<xsl:text>fB</xsl:text>
|
||||||
<xsl:apply-templates/>
|
<xsl:apply-templates/>
|
||||||
|
|
Loading…
Reference in New Issue