-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.json
144 lines (144 loc) · 3.42 KB
/
template.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"uuid": "43a3fdd1-8535-42e0-81a7-5edbff296e66",
"name": "Science Europe DCC Template",
"allowedKMs": [
{
"orgId": "dsw",
"kmId": "root",
"minVersion": "2.0.0",
"maxVersion": null
},
{
"orgId": "dsw",
"kmId": "root-beta",
"minVersion": "2.0.16",
"maxVersion": null
}
],
"formats": [
{
"uuid": "a9293d08-59a4-4e6b-ae62-7a6a570b031c",
"name": "HTML Document",
"icon": "far fa-file-code",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
}
]
},
{
"uuid": "68c26e34-5e77-4e15-9bf7-06ff92582257",
"name": "PDF Document",
"icon": "far fa-file-pdf",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "wkhtmltopdf",
"options": {
"args": "--disable-smart-shrinking --footer-center [page] --footer-font-name \"Noto Serif\" --footer-spacing 10 --footer-font-size 10 -B 25mm -L 25mm -R 25mm -T 25mm"
}
}
]
},
{
"uuid": "dbc94579-40d7-42c3-975c-71e30d07778b",
"name": "LaTeX Document",
"icon": "far fa-file-alt",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "latex"
}
}
]
},
{
"uuid": "f4bd941a-dfbe-4226-a1fc-200fb5269311",
"name": "MS Word Document",
"icon": "far fa-file-word",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "docx"
}
}
]
},
{
"uuid": "15e53172-bbae-4a0c-a4d9-8f3ddf60e7b6",
"name": "OpenDocument Text",
"icon": "far fa-file-alt",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "odt"
}
}
]
},
{
"uuid": "f0533e48-f4c5-4af2-b2c1-5a47d4a247c0",
"name": "Markdown Document",
"icon": "far fa-file-alt",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "markdown"
}
}
]
}
]
}