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

     1  <?xml version = "1.0" encoding = "UTF-8"?>
     2  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
     3  <xsl:template match='doc'>
     4  <html>
     5  <body>
     6  <ul>
     7      <xsl:for-each select='items'>
     8      <xsl:sort/>
     9      <li><xsl:value-of select='.'/></li>
    10      </xsl:for-each>
    11  </ul>
    12  </body>
    13  </html>
    14  </xsl:template>
    15  </xsl:stylesheet>