tags:

views:

20

answers:

1
+1  Q: 

Embed HTML in XML

Hi,

I'm creating a news app for android where news data transfered to clients using xml. The problem is how can i embed news content inside xml ? News content contains html tag. Here is part of my xml data

<title>xxx</title>
<date>xx</date>
<content>html here</content>
+1  A: 

You will have to use the CDATA-Tag:

http://www.w3schools.com/xml/xml_cdata.asp

Femaref
Thanx for the answer, i'll make a try ;)
Lorensius W. L. T