Skip to content

Instantly share code, notes, and snippets.

@spdustin
Created October 30, 2012 16:35
Show Gist options
  • Save spdustin/3981372 to your computer and use it in GitHub Desktop.
Save spdustin/3981372 to your computer and use it in GitHub Desktop.
XSL Identity Transform
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xmp>
<xsl:apply-templates />
</xmp>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment