Is HTML code inside the <description> tag compliant in RSS 2.0?
2 Answers
The RSS 2.0 specification says that you can include HTML in the description element so long as you properly encode the markup.
You have two ways to do this:
Convert tags to escaped HTML entities:
<description>this is <b>bold</b></description>Wrap the description content within a
CDATAsection:<description><![CDATA[this is <b>bold</b>]]></description>
Comments
You can decode < and > char to html code
< : <
> : >
3 Comments
Alexis Wilke
You also need to change the ampersand (&) character.
Flimm
And to be safe, the
" and ' characters too, in addition to &, < and >.Aaron Blenkush
This is the complete list (5 predefined entities): en.wikipedia.org/wiki/…