I have a client requirement:
<account>
<Salutation><![CDATA[Dear Customer]]></Salutation>
</account>
I don't understand why they mentioned this. When I try to display it with
<xsl:value-of select="account/Salutation" />
I am getting the output as normal Dear Customer
. If this is the required output then why is CDATA mentioned? Or should it produce [Dear Customer]
- output with []?