github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-77.xsl (about) 1 <?xml version="1.0"?> <xsl:stylesheet 2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 3 version="1.0"> 4 <!-- I have tried this with xmlns:xml="http://www.w3.org/XML/1998/namespace" 5 defined above, too 6 --> 7 8 <xsl:template match="/"> 9 <xsl:apply-templates mode="copy"/> 10 </xsl:template> 11 12 <xsl:template match="@* | node()" mode="copy"> 13 <xsl:copy> 14 <xsl:apply-templates select="node() | @*" mode="copy"/> 15 </xsl:copy> 16 </xsl:template> 17 18 </xsl:stylesheet>