github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/character2.xsl (about) 1 <?xml version="1.0" encoding="ISO-8859-1"?> 2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 3 version="1.0"> 4 <xsl:output method="xml" indent="yes"/> 5 6 <xsl:template match="character"> 7 <xsl:apply-templates select="skills"/> 8 </xsl:template> 9 10 <xsl:template match="skills"> 11 <xsl:for-each select="*"> 12 <xsl:value-of select="./@name"/> 13 <xsl:text> </xsl:text> 14 </xsl:for-each> 15 </xsl:template> 16 </xsl:stylesheet>