github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-64.xsl (about)

     1  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     2    <xsl:template match="@*|node()" priority="1">
     3      <xsl:text>It is broken!</xsl:text>
     4    </xsl:template>
     5    <xsl:template match="/" priority="2">
     6      <xsl:text>It works!</xsl:text>
     7    </xsl:template>
     8  </xsl:stylesheet>