How can I put double <br/> tags in an XSLT file for a double line break?
For example, I want to display something like below:
Hi Jessica,
Your account is activated!
so between the comma and "Your" I will put two <br/> tags.
My code currently is:
<xsl:value-of select="concat(demessage/TEXT.1, demessage/TEXT.SPACE, demessage/TEXT.2, '<br/>', '<br/>', demessage/TEXT.3)"/>
Respectively, TEXT.1 = Hi, TEXT.2 = Jessica, TEXT.3 = Your account is activated!
In this case, I think the double line break should work however, it is still giving me one new line.
Does anyone have any ideas why the transform is behaving like this?
"Hi, Jessica, <br/><br/>Your account is activated!". An HTML browser would display this asHi, Jessica, <br/><br/>Your account is activated!with no line breaks and the actual markup being shown.