Closed am1t closed 6 years ago
Hi @am1t,
There's a couple of issues with the feed that is preventing it from being parsed correctly. Try getting your feed to pass validation.
The main thing is that whenever you use html, you must enclose the content in CDATA tags:
Incorrect:
<description>
<p>Content</p>
</description>
Correct:
<description>
<![CDATA[
<p>Content</p>
]]>
</description>
I see the posts from a feed for blot blog do not display correctly. Feedbin reader skips the html and only displays the text (when the feed does have html tags). Other feed readers display the content correctly. Always need to fetch the full content for the reader to display with all the html intact.
Gist