Skip to content

Instantly share code, notes, and snippets.

@kovrov
Created August 16, 2015 00:01
Show Gist options
  • Select an option

  • Save kovrov/0b786fb6d464be644314 to your computer and use it in GitHub Desktop.

Select an option

Save kovrov/0b786fb6d464be644314 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 method="xml" encoding="utf-8" indent="yes"/>
<xsl:template match="shortcut"/>
<xsl:template match="*[(node())]">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</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