blob: b328ba23960a94b6363f58a78cdb700faad57123 (
plain)
1
2
3
4
5
6
7
|
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="utf-8" indent="no"/>
<xsl:template match="node()|@*">
<xsl:copy-of select="/"/>
</xsl:template>
</xsl:stylesheet>
|