summaryrefslogtreecommitdiff
path: root/tests/REC/test-6.xsl
blob: 707e1103ca6ea390a2de7a067787d5a6b853608b (plain)
1
2
3
4
5
6
7
8
9
10
11
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="doc">
    <xsl:call-template name="docfound"/>
</xsl:template>

<xsl:template name="docfound">
<xsl:text>doc found</xsl:text>
</xsl:template>
</xsl:stylesheet>