1<!-- Based on callouts.xsl. Fixes man page callouts for DocBook 1.72 XSL -->
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
4<xsl:param name="man.output.quietly" select="1"/>
5<xsl:param name="refentry.meta.get.quietly" select="1"/>
6
7<xsl:template match="co">
8 <xsl:value-of select="concat('▓fB(',substring-after(@id,'-'),')▓fR')"/>
9</xsl:template>
10<xsl:template match="calloutlist">
11 <xsl:text>⌂sp </xsl:text>
12 <xsl:apply-templates/>
13 <xsl:text> </xsl:text>
14</xsl:template>
15<xsl:template match="callout">
16 <xsl:value-of select="concat('▓fB',substring-after(@arearefs,'-'),'. ▓fR')"/>
17 <xsl:apply-templates/>
18 <xsl:text>⌂br </xsl:text>
19</xsl:template>
20
21</xsl:stylesheet>