github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-16-.xsl (about) 1 <xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" 2 version="1.0"> 3 <xsl:output method = "text" /> 4 <xsl:template match = "/" > 5 <xsl:apply-templates select = "//AAA" /> 6 </xsl:template> 7 8 <xsl:template match = "*" > 9 <xsl:number level = "multiple"/> 10 <xsl:text > AAA 11 </xsl:text> 12 </xsl:template> 13 </xsl:stylesheet>