Open jonaskohl opened 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.
<![CDATA[
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!
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:
it renders as
instead of