feedbin / support

83 stars 11 forks source link

Posts do not display correctly #588

Closed am1t closed 6 years ago

am1t commented 6 years ago

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

benubois commented 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>