Created
February 14, 2013 15:38
-
-
Save paulweb515/4953601 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:template match="@*|node()"> | |
<xsl:copy> | |
<xsl:apply-templates select="@*"> | |
<xsl:sort select="name()" /> | |
</xsl:apply-templates> | |
<xsl:apply-templates select="node()"> | |
<xsl:sort select="name()" /> | |
<xsl:sort select="@*" /> | |
</xsl:apply-templates> | |
</xsl:copy> | |
</xsl:template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment