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

     1  <?xml version="1.0"?>
     2  <xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
     3  version="1.0">
     4  <xsl:output method="text"/>
     5  <xsl:template match="/XML_DATA//*">
     6  <xsl:value-of select="name()"/>
     7  <xsl:text> - </xsl:text>
     8  <xsl:for-each select="namespace::*">
     9  <xsl:text> &quot;</xsl:text>
    10  <xsl:value-of select="name()"/>
    11  <xsl:text>&quot; </xsl:text>
    12  </xsl:for-each>
    13  <xsl:text>
    14  </xsl:text>
    15  </xsl:template>
    16  </xsl:stylesheet>