Skip to content

Instantly share code, notes, and snippets.

View benoitpointet's full-sized avatar

Benoît Pointet benoitpointet

View GitHub Profile
@benoitpointet
benoitpointet / empty_xml.xsl
Created December 9, 2011 06:13
XSL transform that empties an xml file of all its content, retains structure
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates select="*" />
</xsl:copy>
</xsl:template>