rss
rss copied to clipboard
Library for serializing the RSS web content syndication format
Some rss like `https://www.coindesk.com/arc/outboundfeeds/rss/?outputType=xml` will have multi links in single item. So we could improve parse it by just keep the first valid link. Let me know if you guys...
I know that this crate already implements the iTunes extension, however there is a new spec for podcasts that adds new features. Specification: https://podcastindex.org/namespace/1.0 also spec development happens here: https://github.com/Podcastindex-org/podcast-namespace
Could we get a wasm build of the library officially published to something like npm?
Would it be possible to either make the toxml module public or add a `pub use crate::toxml::ToXml` to lib.rs?
The [feed validator](https://validator.w3.org/feed/#validate_by_input) suggests to [encode `&` and ` A publisher should encode "&" and "" character, a publisher should use the hexadecimal reference >. The following input gave me...
The specification is located [here](http://www.rssboard.org/media-rss)
It is not a rare situation to meet broken RSS. I have two examples: 1. Unescaped ampersand: `Here & there` 2. HTML entities: `Text with «angle quotes»` Formally these documents...