475c21635b6364ac72893c34cb4a0126257c6cc3
[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:param name="score" select="''"/>
7 <xsl:param name="id" select="''"/>
8 <xsl:output indent="yes"
9       method="xml"
10       version="1.0"
11       encoding="UTF-8"/>
12
13  <xsl:template match="/">
14    <snippet>
15      <id><xsl:value-of select="$id"/></id>
16      <score><xsl:value-of select="$score"/></score>
17      <xsl:copy-of select="$snippet"/>
18    </snippet>
19  </xsl:template>
20
21 </xsl:stylesheet>