-
Notifications
You must be signed in to change notification settings - Fork 3
/
template.json
124 lines (124 loc) · 3.22 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
{
"organizationId": "dsw",
"templateId": "questionnaire-report",
"version": "2.14.1",
"name": "Questionnaire Report",
"description": "Exported questions and answers from a questionnaire",
"metamodelVersion": 16,
"license": "Apache-2.0",
"allowedPackages": [
{
"orgId": null,
"kmId": null,
"minVersion": null,
"maxVersion": null
}
],
"formats": [
{
"uuid" : "d3e98eb6-344d-481f-8e37-6a67b6cd1ad2",
"name" : "JSON Data",
"icon" : "far fa-file",
"steps" : [
{
"name" : "json",
"options" : {}
}
]
},
{
"uuid" : "a9293d08-59a4-4e6b-ae62-7a6a570b031c",
"name" : "HTML Document",
"icon" : "far fa-file-code",
"steps" : [
{
"name" : "jinja",
"options" : {
"template" : "src/default.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/default.html.j2",
"content-type" : "text/html",
"extension" : "html"
}
},
{
"name" : "weasyprint",
"options" : {}
}
]
},
{
"uuid" : "dbc94579-40d7-42c3-975c-71e30d07778b",
"name" : "LaTeX Document",
"icon" : "far fa-file-alt",
"steps" : [
{
"name" : "jinja",
"options" : {
"template" : "src/default.tex.j2",
"content-type" : "text/x-tex",
"extension" : "tex"
}
}
]
},
{
"uuid" : "f4bd941a-dfbe-4226-a1fc-200fb5269311",
"name" : "MS Word Document",
"icon" : "far fa-file-word",
"steps" : [
{
"name" : "jinja",
"options" : {
"template" : "src/for-word.html.j2",
"content-type" : "text/html",
"extension" : "html"
}
},
{
"name" : "pandoc",
"options" : {
"from" : "html",
"to" : "docx",
"args": "--filter=pandoc-docx-pagebreakpy --reference-doc=src/reference.docx"
}
}
]
},
{
"uuid" : "f0533e48-f4c5-4af2-b2c1-5a47d4a247c0",
"name" : "Markdown Document",
"icon" : "far fa-file-alt",
"steps" : [
{
"name" : "jinja",
"options" : {
"template" : "src/default.md.j2",
"content-type" : "text/html",
"extension" : "md"
}
}
]
}
],
"_tdk": {
"version": "4.1.0",
"readmeFile": "README.md",
"files": [
"src/**/*"
]
}
}