-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.json
90 lines (90 loc) · 2.57 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
{
"templateId": "horizon-europe-dmp",
"organizationId": "dsw",
"version": "1.13.0",
"name": "Horizon Europe DMP",
"description": "Data Management Plan according to the Horizon Europe template",
"license": "Apache-2.0",
"metamodelVersion": 16,
"allowedPackages": [
{
"orgId": "dsw",
"kmId": "root",
"minVersion": "2.6.7",
"maxVersion": null
},
{
"orgId": "dsw",
"kmId": "lifesciences",
"minVersion": "2.6.7",
"maxVersion": null
}
],
"formats": [
{
"uuid": "5b9800f9-22ba-41f8-9ccd-f17fda46f69a",
"name": "HTML",
"icon": "far fa-file-code",
"steps": [
{
"name": "jinja",
"options": {
"template": "src/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": "src/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "weasyprint",
"options": {}
}
]
},
{
"uuid": "f4bd941a-dfbe-4226-a1fc-200fb5269311",
"name": "MS Word Document",
"icon": "far fa-file-word",
"steps": [
{
"name": "jinja",
"options": {
"template": "src/word/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
},
{
"name": "pandoc",
"options": {
"from": "html",
"to": "docx",
"args": "--filter=pandoc-docx-pagebreakpy --reference-doc=src/word/reference.docx"
}
}
]
}
],
"_tdk": {
"version": "4.1.0",
"readmeFile": "README.md",
"files": [
"src/*",
"src/**/*"
]
}
}