github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-3-.xsl (about) 1 <xsl:stylesheet 2 version="1.0" 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 4 5 <xsl:template match="*"> 6 <xsl:copy> 7 <xsl:copy-of select="@*"/> 8 <xsl:apply-templates/> 9 </xsl:copy> 10 </xsl:template> 11 12 </xsl:stylesheet> 13