1<xsl:stylesheet
2  version="1.0"
3  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4  xmlns:fo="http://www.w3.org/1999/XSL/Format"
5  xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias">
6
7<xsl:template match="@*|node()">
8  <xsl:copy>
9    <xsl:apply-templates select="@*|node()"/>
10  </xsl:copy>
11</xsl:template>
12</xsl:stylesheet>
13