1 <xsl:stylesheet 
   2       xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
   3     
   4   <!-- same as foo.xsl but doesn't include the param because of a bug -->  
   5   <xsl:template match="/">
   6     <out>
   7       <xsl:apply-templates/>
   8     </out>
   9   </xsl:template>
  10       
  11   <xsl:template 
  12       match="@*|*|text()|processing-instruction()">
  13     <xsl:copy>
  14       <xsl:apply-templates 
  15          select="@*|*|text()|processing-instruction()"/>
  16     </xsl:copy>
  17   </xsl:template>
  18 </xsl:stylesheet>