This repository has been archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinline-config.json
71 lines (71 loc) · 2.96 KB
/
inline-config.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"image": {
"size": ["huge", "big", "medium", "small", "tiny"],
"crop": ["original", "16x9", "1x1", "3x1"],
"defaults": {
"size": "big",
"crop": "16x9",
"image_id": 0,
"caption": "",
"url": ""
},
"template":
"<div data-type=\"onion-image\" class=\"onion-image image inline size-{{size}} crop-{{crop}}\" data-image-id=\"{{image_id}}\" data-size=\"{{size}}\" data-crop=\"{{crop}}\"> <div></div><span class=\"caption\">{{caption}}</span></div>"
},
"onion-video": {
"size": ["big", "small"],
"crop": ["16x9", "4x3"],
"defaults": {
"size": "big",
"crop": "16x9"
},
"template":
"<div data-type=\"onion-video\" class=\"onion-video video inline size-{{size}} crop-{{crop}}\" data-video-id=\"{{video_id}}\" data-size=\"{{size}}\" data-crop=\"{{crop}}\"><iframe src=\"/videos/embed?id={{video_id}}\"></iframe></div>"
},
"embed": {
"size": ["big", "small"],
"crop": ["original","16x9", "4x3"],
"defaults": {
"size":"big",
"crop": "16x9"
},
"template":
"<div data-type=\"embed\" data-crop=\"{{crop}}\" data-size=\"{{size}}\" class=\"inline embed size-{{size}} crop-{{crop}}\" data-code=\"{{escaped_code}}\"><div>{{code}}</div><span class=\"caption\">{{caption}}</span></div>"
},
"embed-instagram": {
"template": "<div data-type=\"embed-instagram\" class=\"inline embed embed-instagram crop-1x1\"><div class=\"embed-container\" instagram-embed-html-unsanitized=\"{{html}}\"><div class=\"unrendered\"><i class=\"fa fa-instagram\"></i><span>Instagram Embed</span></div></div><span class=\"caption\">{{caption}}</span></div>"
},
"youtube": {
"size": ["big", "small"],
"crop": ["16x9", "4x3"],
"defaults": {
"size": "small",
"crop": "16x9",
"youtube_id": "foMQX9ZExsE",
"caption": ""
},
"template":
"<div data-type=\"youtube\" class=\"youtube inline size-{{size}} crop-{{crop}}\" data-youtube-id=\"{{youtube_id}}\" data-size=\"{{size}}\" data-crop=\"{{crop}}\"><div><img src=\"http://img.youtube.com/vi/{{youtube_id}}/hqdefault.jpg\"></div><span class=\"caption\">{{caption}}</span></div>"
},
"pullquote": {
"size": ["big", "small"],
"defaults": {
"size" : "big"
},
"template":"<div data-type=\"pullquote\" class=\"pullquote inline size-{{size}}\" data-size=\"{{size}}\">{{content}}</div>"
},
"article": {
"size": ["big", "small"],
"defaults": {
"size":"big"
},
"template": "<div data-type=\"article\"></div>"
},
"articlelist": {
"size": ["big", "small"],
"template": "<div data-type=\"articlelist\" data-tag=\"{{tag}}\"></div>"
},
"hr": {
"template": "<div data-type=\"hr\" class=\"inline hr\"><hr></div>"
}
}