#31
The Identity Transform
You can specify the identity transformation with xsl:copy:
<xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template>
This matches and copies all nodes to the output.