Documentation / manpage-1.72.xslon commit Merge commit 'v1.6.0' into jc/checkout-reflog-fix (4d9e42f)
   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('&#x2593;fB(',substring-after(@id,'-'),')&#x2593;fR')"/>
   9</xsl:template>
  10<xsl:template match="calloutlist">
  11        <xsl:text>&#x2302;sp&#10;</xsl:text>
  12        <xsl:apply-templates/>
  13        <xsl:text>&#10;</xsl:text>
  14</xsl:template>
  15<xsl:template match="callout">
  16        <xsl:value-of select="concat('&#x2593;fB',substring-after(@arearefs,'-'),'. &#x2593;fR')"/>
  17        <xsl:apply-templates/>
  18        <xsl:text>&#x2302;br&#10;</xsl:text>
  19</xsl:template>
  20
  21</xsl:stylesheet>