github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/REC/test-7.7-1.xsl (about)

     1  <xsl:stylesheet
     2    version="1.0"
     3    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     4  
     5  <xsl:template match="items">
     6    <xsl:for-each select="item">
     7      <xsl:sort select="."/>
     8      <p>
     9        <xsl:number value="position()" format="1. "/>
    10        <xsl:value-of select="."/>
    11      </p>
    12    </xsl:for-each>
    13  </xsl:template>
    14  
    15  </xsl:stylesheet>