Simple XSLT stylesheet
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- copy all elements and their attributes and content recursively -->
<xsl:apply-templates select="@*" />
<!-- copy all attributes, comments and processing instructions -->
<xsl:template match="@*|comment()|processing-instruction()">
<xsl:copy-of select="." />