diff options
Diffstat (limited to 'examples/xsl/cat.xsl')
-rw-r--r-- | examples/xsl/cat.xsl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/xsl/cat.xsl b/examples/xsl/cat.xsl new file mode 100644 index 0000000..b328ba2 --- /dev/null +++ b/examples/xsl/cat.xsl @@ -0,0 +1,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> |