aboutsummaryrefslogtreecommitdiff
path: root/xsl/identity.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'xsl/identity.xsl')
-rw-r--r--xsl/identity.xsl10
1 files changed, 10 insertions, 0 deletions
diff --git a/xsl/identity.xsl b/xsl/identity.xsl
new file mode 100644
index 0000000..04a0bd4
--- /dev/null
+++ b/xsl/identity.xsl
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:output method="xml"/>
+<xsl:template match="@*|node()">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()"/>
+ </xsl:copy>
+</xsl:template>
+
+</xsl:stylesheet>