Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
727 views

Is xsl:sequence always non-empty?

I don't understand output from this stylesheet: <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> ...
1
vote
3answers
28k views

<xsl:variable> Print out value of XSL variable using <xsl:value-of>

I'm trying to output a variable's literal string value, after it is being set depending on whether a node exists or not. I think the condition check logic is correct. But it is not outputing the ...