XSLT: How to get XML
- by Jyotsna Sonawane
I have a XSL that transforms one format of XML into another. In input XML I have a node with following value - which is actually a XML string if we replace < with < (less than) for e.g.
<Paragraph><Title><!CDATA[Pour les nuits du 2012-10-01 - 2012-10-30]]></Title><Text><![CDATA[TAXES INCLUSES.]]></Text></Paragraph>
I want to have the content of otherInfo as a XML node in output XML.
if I do , I do not get it as a XML node - it is output just as text. How can I make XSL output the content of otherInfo as XML node ?