SlyMarbo / rss

A Go library for fetching, parsing, and updating RSS feeds.
Other
400 stars 85 forks source link

Support JSON Feed #72

Closed jrupac closed 4 years ago

jrupac commented 5 years ago

JSON Feed is becoming a more popular format for feed publication. It has similarities to RSS/Atom (see https://jsonfeed.org/mappingrssandatom for more details) and it would be really useful if this library supported it too. The v1 spec is available at https://jsonfeed.org/version/1 and looks relatively straightforward with support for top-level metadata, items, and enclosures (called "attachments").

If you agree, I can try and put together a PR adding basic support for it!

jrupac commented 5 years ago

The JSON feed website also links to two existing Go implementations (https://github.com/st3fan/jsonfeed and https://github.com/kr/jsonfeed).