Hi, I would like to know how to perform the following with Xalan: I have a string of multiple lines and would like to add a "//" at the beginning of every line. I try to achieve that with
<xsl:text>//</xsl:text>
<xsl:value-of select='translate(., "
", "
//")'/>
However, only the first // appears.
Any hints what's wrong?
Thanks,
Jochen
