summaryrefslogtreecommitdiff
path: root/filter/source/xslt/common/copy.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/xslt/common/copy.xsl')
-rw-r--r--filter/source/xslt/common/copy.xsl9
1 files changed, 9 insertions, 0 deletions
diff --git a/filter/source/xslt/common/copy.xsl b/filter/source/xslt/common/copy.xsl
new file mode 100644
index 000000000000..a608e2cc6925
--- /dev/null
+++ b/filter/source/xslt/common/copy.xsl
@@ -0,0 +1,9 @@
+<?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" encoding="UTF-8"/>
+
+ <xsl:template match="/">
+ <xsl:copy-of select="."/>
+ </xsl:template>
+</xsl:stylesheet>
+