Skip to content

Instantly share code, notes, and snippets.

@ricfeatherstone
ricfeatherstone / Identify Transform
Created August 14, 2013 09:07
XSL identity transform.
<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- IdentityTransform -->
<xsl:template match="/ | @* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>