github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-124.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:mml="http://example.org/foobar" 4 version="1.0"> 5 <xsl:strip-space elements="mml:*"/> 6 <xsl:template match="/"> 7 <xsl:apply-templates/> 8 </xsl:template> 9 <xsl:template match="*"> 10 <xsl:copy> 11 <xsl:apply-templates/> 12 </xsl:copy> 13 </xsl:template> 14 </xsl:stylesheet>