12 lines
325 B
HTML
12 lines
325 B
HTML
<xsl:template name="compare">
|
|
<xsl:param name="a" select="1"/>
|
|
<xsl:param name="b" select="2"/>
|
|
<fo:block>
|
|
<xsl:choose>
|
|
<xsl:when test="$a < $b">a < b</xsl:when>
|
|
<xsl:when test="$a > $b">a > b</xsl:when>
|
|
<xsl:when test="$a = $b">a = b</xsl:when>
|
|
</xsl:choose>
|
|
</fo:block>
|
|
</xsl:template>
|