H
Hoi Wong
As I'm trying to do conditional variable assignment (see the post below), I
have to use
<xsl:variable name="someName">
<xsl:value-of select="true()"/>
</xsl:variable>
instead of
<xsl:variable name="someName" select="true()"/>
but apparently value-of select converts my variable to string instead of
boolean, and that leaves a dangerous trap in my code that
have to use
<xsl:variable name="someName">
<xsl:value-of select="true()"/>
</xsl:variable>
instead of
<xsl:variable name="someName" select="true()"/>
but apparently value-of select converts my variable to string instead of
boolean, and that leaves a dangerous trap in my code that