github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-78.xsl (about) 1 <?xml version="1.0" encoding="ISO-8859-1"?> 2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 3 xmlns:xi="http://www.toto.com/xinclude" version="1.0"> 4 <xsl:output encoding="ISO-8859-1" method="html"/> 5 <xsl:strip-space elements="*"/> 6 <xsl:template match="/"> 7 <xsl:apply-templates/> 8 </xsl:template> 9 <xsl:template match="xi:*"> 10 <xsl:copy> 11 <xsl:apply-templates select="node()|@*"/> 12 </xsl:copy> 13 </xsl:template> 14 <xsl:template match="@xi:*"> 15 <xsl:copy/> 16 </xsl:template> 17 </xsl:stylesheet>