-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.json
156 lines (156 loc) · 4.23 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
145
146
147
148
149
150
151
152
153
154
155
156
{
"id": "SciLifeLab:SLL-SE-VR-TEMPLATE:0.1.0",
"organizationId": "SciLifeLab",
"templateId": "SLL-SE-VR-TEMPLATE",
"version": "0.1.0",
"name": "SciLifeLab Vetenskapsrådet DMP",
"description": "Default DMP template based on the style recommended by the Swedish Research Council",
"readme": "# Vetenskapsrådet DMP template\n\nThis is a template that can be used for producing a DMP that fulfills the requirements by [Vetenskapsrådet](https://www.vr.se) in [Producing a data management plan](https://www.vr.se/english/applying-for-funding/requirements-terms-and-conditions/producing-a-data-management-plan.html), designed for use in [SciLifeLab Data Stewardship Wizard](https://dsw.scilifelab.se) with knowledge model *SciLifeLab Vetenskapsrådet DMP* (SciLifeLab:SLL-SE-VR-DMP:2.0.1).\n",
"recommendedPackageId": "dsw:root:2.2.0",
"allowedPackages": [
{
"orgId": "SciLifeLab",
"kmId": "SLL-SE-VR-DMP",
"minVersion": "2.0.1",
"maxVersion": null
}
],
"formats": [
{
"uuid": "ea4daac4-b2bc-47e0-bd4e-67b9f089937d",
"name": "HTML Document",
"shortName": "html",
"icon": "far fa-file-code",
"color": "#497F13",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
}
]
},
{
"uuid": "45469a71-272c-4e3d-833e-cf6492cbcf17",
"name": "PDF Document",
"shortName": "pdf",
"icon": "far fa-file-pdf",
"color": "#E02222",
"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": "3dbdca0b-4168-416f-aff8-8e8f0f310444",
"name": "LaTeX Document",
"shortName": "latex",
"icon": "far fa-file-alt",
"color": "#44D7B6",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "latex"
}
}
]
},
{
"uuid": "efb5c9fc-1e1e-44e4-a190-52131c7aa986",
"name": "MS Word Document",
"shortName": "docx",
"icon": "far fa-file-word",
"color": "#0991FF",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "docx"
}
}
]
},
{
"uuid": "4adb3c5d-f991-4e7c-8caf-43e94be0d187",
"name": "OpenDocument Text",
"shortName": "odt",
"icon": "far fa-file-alt",
"color": "#32C5FF",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "odt"
}
}
]
},
{
"uuid": "4307511e-92bb-41f5-a46f-de29408dc3e1",
"name": "Markdown Document",
"shortName": "md",
"icon": "far fa-file-alt",
"color": "#6D7278",
"steps": [
{
"name": "jinja",
"options": {
"template": "parts/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "markdown"
}
}
]
}
]
}