1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-09-02 12:43:13 +02:00

format: Refactor JsonFormat to JSON Feed version 1 (#988)

JsonFormat now implements https://jsonfeed.org/version/1

Closes #618
This commit is contained in:
fulmeek
2019-01-05 13:20:11 +01:00
committed by LogMANOriginal
parent 288d4de218
commit 8801ac9e64
11 changed files with 385 additions and 10 deletions

View File

@@ -0,0 +1,19 @@
{
"version": "https://jsonfeed.org/version/1",
"title": "Sample microblog feed",
"home_page_url": "https://example.com/blog/",
"feed_url": "https://example.com/feed",
"icon": "https://example.com/logo.png",
"favicon": "https://example.com/logo.png",
"items": [
{
"id": "1918f084648b82057c1dd3faa3d091da82a6fac2",
"date_modified": "2018-10-07T16:53:03+00:00",
"content_text": "Oh 😲 I found three monkeys 🙈🙉🙊"
},{
"id": "e62189168a06dfa74f61c621c79c33c4c8517e1f",
"date_modified": "2018-10-07T16:38:17+00:00",
"content_text": "Something happened"
}
]
}