Skip to content

Instantly share code, notes, and snippets.

@emiliano-poggi
Created May 14, 2011 12:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save emiliano-poggi/972175 to your computer and use it in GitHub Desktop.
Save emiliano-poggi/972175 to your computer and use it in GitHub Desktop.
XSLT: identity transform
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<!--processes all *elements* by copying them, and can be overridden for individual elements -->
<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- processes all *nodes* by copying them, and can be overridden for individual elements, attributes, comments, processing instructions, or text nodes -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
@emiliano-poggi
Copy link
Author

The identity transform template rule copy all xml document source as is. More

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment