Im trying to use the simplepie package to parse the RSS output and it doesn't like the html inside of the <zoom:context> tag. (The span id="highlight" is what is causing the problem. The span tag and content inside it does not get displayed at all.
Is this the proper format to use within rss/xml? Or would standards approach be to either
a) wrap the context inside of <[CDATA[ ..data.. ]]> tags, or
b) use < > instead of < and > for the inner html?
In looking at other rss outputs, one of these 2 approaches appears to be how its handled.
Update: I just re-created the output and added <[CDATA[ ]]> around the content and it works as expected, including the inner html. I believe this to be the standard approach.
Anyway to enforce this?
Is this the proper format to use within rss/xml? Or would standards approach be to either
a) wrap the context inside of <[CDATA[ ..data.. ]]> tags, or
b) use < > instead of < and > for the inner html?
In looking at other rss outputs, one of these 2 approaches appears to be how its handled.
Update: I just re-created the output and added <[CDATA[ ]]> around the content and it works as expected, including the inner html. I believe this to be the standard approach.
Anyway to enforce this?
Comment