1<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
2
3  <xsl:template match="para">
4    <xsl:text>Test B para template</xsl:text>
5    <xsl:apply-templates/>
6  </xsl:template>
7
8  <xsl:template match="Test">
9    <xsl:text>Test B Test template</xsl:text>
10    <xsl:apply-templates/>
11  </xsl:template>
12
13</xsl:stylesheet>
14
15