The data inside CDATA to be parsed as Html.
<?xml version="1.0" encoding="utf-8" ?>
<test>
<test1>
<![CDATA[ <B> Test Data1 </B> ]]>
</test1>
<test2>
<![CDATA[ <B> Test Data2 </B> ]]>
</test2>
<test3>
<![CDATA[ <B> Test Data3 </B> ]]>
</test3>
</test>
From the Above input xml I need the output to be parsed as html.
But I am getting the output as
<B>Test Data1</B>
<B>Test Data2</B>
<B>Test Data3</B>
But the actual output I need the text to be in bold.
**Test Data1
Test Data2
Test Data3**
The input is coming from external system.We could not change the text inside CDATA