-
Notifications
You must be signed in to change notification settings - Fork 14
/
sample.json
57 lines (56 loc) · 924 Bytes
/
sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[
{
"type":"text",
"data":"<p>Hello World</p>"
},
{
"type":"image",
"data":{
"url":"http://example.com/image/url.jpg",
"subtext": "Describe the image",
"hyperlink": ""
}
},
{
"type":"quote",
"data":{
"content":"<p>Hello<p>",
"credit":"Some Anon"
}
},
{
"type":"embed",
"data":{
"url":"https://www.youtube.com/watch?v=xyz",
"subtext": "",
"oembed":{
}
}
},
{
"type":"hr",
"data": ""
},
{
"type":"ol",
"data":[
{
"content":"<p>Line 1</p>"
},
{
"content":"<p>Line 2</p>"
}
]
},
{
"type":"ul",
"data":[
{
"content":"<p>Line 1</p>"
},
{
"content":"<p>Line 2</p>"
}
]
}
]