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('\fB(',substring-after(@id,'-'),')\fR')"/>
6 <xsl:template match=
"calloutlist">
7 <xsl:text>.sp
</xsl:text>
9 <xsl:text> </xsl:text>
11 <xsl:template match=
"callout">
12 <xsl:value-of select=
"concat('\fB',substring-after(@arearefs,'-'),'. \fR')"/>
13 <xsl:apply-templates/>
14 <xsl:text>.br
</xsl:text>