doc/man: xsl: move manpage-base.xsl -> manpage-callouts.xsl
[lttng-tools.git] / doc / man / xsl / manpage-callouts.xsl
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
2 <xsl:template match="co">
3 <xsl:value-of select="concat('\','fB(',substring-after(@id,'-'),')','\','fR')"/>
4 </xsl:template>
5 <xsl:template match="calloutlist">
6 <xsl:value-of select="."/>
7 <xsl:text>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('\','fB',substring-after(@arearefs,'-'),'. ','\','fR')"/>
13 <xsl:apply-templates/>
14 <xsl:value-of select="."/>
15 <xsl:text>br&#10;</xsl:text>
16 </xsl:template>
17 </xsl:stylesheet>
This page took 0.032217 seconds and 4 git commands to generate.