XSLT code, copy as it is
<!--<xsl:template match="/">
<xsl:copy-of select="."/>
</xsl:template>-->
-------------------------------------------------------------------
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
------------------