/bundles/plugins-trunk/XML/templates/xslt-1.0.vm
# · Unknown · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · 414ec81864aaef931ce742b8042d2a7b MD5 · raw file
- <?xml version="1.0" ?>
- <!-- this is an XSLT 1.0 stylesheet -->
- <xsl:stylesheet
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0">
- <xsl:template match="@*|node()">
- <xsl:copy>
- <xsl:apply-templates select="@*|node()"/>
- </xsl:copy>
- </xsl:template>
- </xsl:stylesheet>