I have XML with product's parameters like colors.
<parameter name='color'>
<value>black</value>
<value>white</value>
</parameter>
I want to output a value like so:
<g:color>black/white</g:color>
Important is that number or values isn't known. Mostly it is 1 value but can be also 2 or more sometimes.
I did a for-each loop selecting all value nodes so for the moment I have result like:
<g:color>blackwhite</g:color>
So without separator. When I try to use <xsl:text>/</xsl:text> I got an error. Probably I have to escape it or wrap it somehow but I don't know the solution.