1<?xml version="1.0"?>
2
3<!-- identity transformation -->
4
5<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
6
7<xsl:template match="*">
8  <xsl:copy>
9    <xsl:apply-templates/>
10  </xsl:copy>
11</xsl:template>
12
13</xsl:stylesheet>