You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug Description:
Up to the current version (2024-04-12), if the description field contains escaped CDATA, feedparser fails to extract the content. I have simplified the issue and provided a minimal reproducible test case ( source RSS link ).
Expectation: feed.entries[0].description=='some text', but the actual result is an empty string.
If <![CDATA[some text]]> is changed to <![CDATA[some text]]>, then it works fine.
The text was updated successfully, but these errors were encountered:
cdhigh
changed the title
parse description with CDATA error.
parse description with escaped CDATA error.
Apr 27, 2024
cdhigh
changed the title
parse description with escaped CDATA error.
Error to parse description with escaped CDATA.
Apr 27, 2024
cdhigh
changed the title
Error to parse description with escaped CDATA.
Failed to parse description field with escaped CDATA.
Apr 27, 2024
Bug Description:
Up to the current version (2024-04-12), if the description field contains escaped CDATA, feedparser fails to extract the content. I have simplified the issue and provided a minimal reproducible test case ( source RSS link ).
Expectation:
feed.entries[0].description=='some text'
, but the actual result is an empty string.If
<![CDATA[some text]]>
is changed to<![CDATA[some text]]>
, then it works fine.The text was updated successfully, but these errors were encountered: