fix config reading in tests
[git/dscho.git] / Documentation / manpage-1.72.xsl
blobfe3cd72d6f6bfde6e5071c68814e2e985cba8c6c
1 <!-- callout.xsl: converts asciidoc callouts to man page format -->
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3 <xsl:template match="co">
4 <xsl:value-of select="concat('&#x2593;fB(',substring-after(@id,'-'),')&#x2593;fR')"/>
5 </xsl:template>
6 <xsl:template match="calloutlist">
7 <xsl:text>&#x2302;sp&#10;</xsl:text>
8 <xsl:apply-templates/>
9 <xsl:text>&#10;</xsl:text>
10 </xsl:template>
11 <xsl:template match="callout">
12 <xsl:value-of select="concat('&#x2593;fB',substring-after(@arearefs,'-'),'. &#x2593;fR')"/>
13 <xsl:apply-templates/>
14 <xsl:text>&#x2302;br&#10;</xsl:text>
15 </xsl:template>
17 </xsl:stylesheet>