1 <?xml version="1.0"?> 
   2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   3 
   4 <!-- From the XSLT spec: "the identity transformation can be written using xsl:copy as follows:" -->
   5   <xsl:template match="@*|node()">
   6     <xsl:copy>
   7       <xsl:apply-templates select="@*|node()"/>
   8     </xsl:copy>
   9   </xsl:template>
  10      
  11 </xsl:stylesheet>