Skip to content

Instantly share code, notes, and snippets.

@shantigilbert
Created January 13, 2020 06:03
Show Gist options
  • Save shantigilbert/d1538ed448c9fda17390d9eaba7cd1c5 to your computer and use it in GitHub Desktop.
Save shantigilbert/d1538ed448c9fda17390d9eaba7cd1c5 to your computer and use it in GitHub Desktop.
https://online-toolz.com/tools/xslt-transformation.php
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="no" indent="yes" encoding="UTF-8"/>
<xsl:strip-space elements="*"/>
<xsl:template match="systemList">
<systemList>
<xsl:for-each select="system">
<xsl:sort select="fullname"/>
<system>
<xsl:copy-of select="*" />
</system>
</xsl:for-each>
</systemList>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment