1

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>
Lorensius W. L. T
  • 1,734
  • 4
  • 19
  • 31
  • Possible duplicate of [Is it possible to insert HTML content in XML document?](https://stackoverflow.com/questions/4412395/is-it-possible-to-insert-html-content-in-xml-document) – Franklin Yu Jun 03 '19 at 18:54

1 Answers1

2

You will have to use the CDATA-Tag:

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

Femaref
  • 60,705
  • 7
  • 138
  • 176