summaryrefslogtreecommitdiff
path: root/tools/identity.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/identity.xsl')
-rw-r--r--tools/identity.xsl7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/identity.xsl b/tools/identity.xsl
new file mode 100644
index 00000000..6630f84d
--- /dev/null
+++ b/tools/identity.xsl
@@ -0,0 +1,7 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:template match="@*|node()">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()"/>
+ </xsl:copy>
+ </xsl:template>
+</xsl:stylesheet>