Added snippet stylesheet test.
[idzebra-moved-to-github.git] / test / xslt / snippet.xsl
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2  version="1.0">
3 <!-- Identity transform stylesheet -->
4
5 <xsl:param name="snippet" select="''"/>
6 <xsl:output indent="yes"
7       method="xml"
8       version="1.0"
9       encoding="UTF-8"/>
10
11  <xsl:template match="/">
12    <snippet>
13      <xsl:copy-of select="$snippet"/>
14    </snippet>
15  </xsl:template>
16
17 </xsl:stylesheet>