summaryrefslogtreecommitdiff
path: root/vendor/github.com/gorilla/feeds/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/gorilla/feeds/README.md')
-rw-r--r--vendor/github.com/gorilla/feeds/README.md25
1 files changed, 19 insertions, 6 deletions
diff --git a/vendor/github.com/gorilla/feeds/README.md b/vendor/github.com/gorilla/feeds/README.md
index 4d733cf53..7d7137b46 100644
--- a/vendor/github.com/gorilla/feeds/README.md
+++ b/vendor/github.com/gorilla/feeds/README.md
@@ -1,6 +1,10 @@
## gorilla/feeds
-[![GoDoc](https://godoc.org/github.com/gorilla/feeds?status.svg)](https://godoc.org/github.com/gorilla/feeds)
-[![Build Status](https://travis-ci.org/gorilla/feeds.svg?branch=master)](https://travis-ci.org/gorilla/feeds)
+![testing](https://github.com/gorilla/feeds/actions/workflows/test.yml/badge.svg)
+[![codecov](https://codecov.io/github/gorilla/feeds/branch/main/graph/badge.svg)](https://codecov.io/github/gorilla/feeds)
+[![godoc](https://godoc.org/github.com/gorilla/feeds?status.svg)](https://godoc.org/github.com/gorilla/feeds)
+[![sourcegraph](https://sourcegraph.com/github.com/gorilla/feeds/-/badge.svg)](https://sourcegraph.com/github.com/gorilla/feeds?badge)
+
+![Gorilla Logo](https://github.com/gorilla/.github/assets/53367916/d92caabf-98e0-473e-bfbf-ab554ba435e5)
feeds is a web feed generator library for generating RSS, Atom and JSON feeds from Go
applications.
@@ -13,7 +17,7 @@ applications.
[atom]: https://tools.ietf.org/html/rfc4287
[rss]: http://www.rssboard.org/rss-specification
-[jsonfeed]: https://jsonfeed.org/version/1
+[jsonfeed]: https://jsonfeed.org/version/1.1
### Usage
@@ -147,13 +151,18 @@ Outputs:
</rss>
{
- "version": "https://jsonfeed.org/version/1",
+ "version": "https://jsonfeed.org/version/1.1",
"title": "jmoiron.net blog",
"home_page_url": "http://jmoiron.net/blog",
"description": "discussion about tech, footie, photos",
"author": {
"name": "Jason Moiron"
},
+ "authors": [
+ {
+ "name": "Jason Moiron"
+ }
+ ],
"items": [
{
"id": "",
@@ -163,7 +172,12 @@ Outputs:
"date_published": "2013-01-16T03:22:24.530817846-05:00",
"author": {
"name": "Jason Moiron"
- }
+ },
+ "authors": [
+ {
+ "name": "Jason Moiron"
+ }
+ ]
},
{
"id": "",
@@ -182,4 +196,3 @@ Outputs:
]
}
```
-