Skip to content

Instantly share code, notes, and snippets.

@shantigilbert
Created August 16, 2019 22:25
Show Gist options
  • Save shantigilbert/047d877cc1e4e8fbcbdace36be3f77f5 to your computer and use it in GitHub Desktop.
Save shantigilbert/047d877cc1e4e8fbcbdace36be3f77f5 to your computer and use it in GitHub Desktop.
<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