OCaml library for JSONfeed parsing and creation
1{
2 "version": "https://jsonfeed.org/version/1.1",
3 "title": "Mixed Content Feed",
4 "items": [
5 {
6 "id": "https://example.com/html",
7 "content_html": "<p>HTML only</p>"
8 },
9 {
10 "id": "https://example.com/text",
11 "content_text": "Text only"
12 },
13 {
14 "id": "https://example.com/both",
15 "content_html": "<p>HTML version</p>",
16 "content_text": "Text version"
17 }
18 ]
19}