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

     1  <xsl:stylesheet
     2    version="1.0"
     3    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     4  
     5  <xsl:template match="person">
     6    <p>
     7     <xsl:value-of select="given-name"/>
     8     <xsl:text> </xsl:text>
     9     <xsl:value-of select="family-name"/>
    10    </p>
    11  </xsl:template>
    12  </xsl:stylesheet>