Tags: bhmj/gofeed
Tags
Support multiple links (mmcdole#164) * Add Feed.Links * Update tests, don't create empty list * Use same rel logic for RSS atom extensions * Support for JSON feed * Fix invalid JSON and run `go mod tidy` * Fix tests, don't return empty strings
Force published field (mmcdole#147) * Force published field When an atom item only have updated field, use it to fill published. - Less function is using published field, it has to always been populated. - Simplify code when using both RSS and Atom feeds. This fix mmcdole#146 * Rename updated to published following @Necoro comment
Follow up to mmcdole#150: Added support for JSON feed (mmcdole#154) * Added the structure for JSON Feed * Updated package name of json and added parser and test wrapper * Added tests for sample json feed parser * Added detector for feed type json * Removed unwated dependencies * Added parser and empty translator for json feeds * Added translator functions for json feed * Added test for json translator * Added tests for content text and banner image * Added tests for invalid feed and string output * Added tests for json in parser * Updated README * Fixed REAME formatting * check for xml first * update dependencies Co-authored-by: Sudhanshu Raheja <sudhanshu@leftshift.io>
Add sort.Interface implementation for Feed (mmcdole#141) Order Feed.Items by oldest to newest publish time.