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:output encoding="utf-8"/>
8
9<xsl:template match="*">
10  <xsl:copy>
11    <xsl:apply-templates/>
12  </xsl:copy>
13</xsl:template>
14
15</xsl:stylesheet>