Ashinch / ReadYou

An Android RSS reader presented in Material You style.
GNU General Public License v3.0
5.11k stars 202 forks source link

CDATA sections not parsed correctly #814

Open jonaskohl opened 3 months ago

jonaskohl commented 3 months ago

1. Environment

2. Describe the bug

When a feed item's content is escaped via <![CDATA[, ReadYou does not parse it. Instead, it shows the CDATA string as-is.

i.e. when the feed contains this:

<content mode="escaped"><![CDATA[This is <b>example</b> content!]]></content> 

it renders as

<![CDATA[This is <b>example</b> content!]]>

instead of

This is example content!