Identity transformation
<xsl:template match="*|@*">
  <xsl:copy>
    <xsl:apply-templates
     select="@*|node()"/>
  </xsl:copy>
</xsl:template>