rss
rss copied to clipboard
Parse invalid XML
It is not a rare situation to meet broken RSS. I have two examples:
- Unescaped ampersand:
<title>Here & there</title>
- HTML entities:
<title>Text with «angle quotes»</title>
Formally these documents are invalid, but practically it could be nice to parse them too.
For example Firefox skips such items but does not discard whole RSS.
Currently this crate discards such inputs.