Allow outputting RSS, Atom, and JSON feeds#264
Allow outputting RSS, Atom, and JSON feeds#264cdzombak wants to merge 17 commits intommcdole:masterfrom
Conversation
6958a90 to
21507eb
Compare
|
This is pretty neat! How would you expect the server to handle pagination? Say Feed data is in a db, and the http request is for page 2. First query the data for that page, then populate the Feed struct, then pass that to the Renderer. Does that sound right? |
|
Thank you for the contribution! I'll look through the changes this week hopefully. One thing to consider is if we want to have these changes target the |
🤦🏻 I was totally unaware of the |
|
Thank you @cdzombak for the PR. I'm using it very successfully for a home project I have. My $0.02 is that it's worth landing into the v1 branch even if it would need work for v2, as it's useful as is and v2 isn't stable yet. Really appreciate the project as a whole! Thank you all and hope you all have a happy new year! |
This PR allows gofeed to convert the universal
Feedrepresentation back into RSS, Atom, or JSON feed structures (performing the inverse oftranslators) and render those structures out to RSS, Atom, or JSON feeds.