-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.json
78 lines (78 loc) · 2.29 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
{
"templateId": "document-starter-template",
"organizationId": "dsw",
"version": "0.1.0",
"name": "Document Template Starter",
"description": "Boilerplate for easily creating new document templates for DSW",
"license": "Apache-2.0",
"metamodelVersion": 13,
"allowedPackages": [],
"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": "--reference-doc=src/word/reference.docx"
}
}
]
}
],
"_tdk": {
"version": "4.8.0",
"readmeFile": "README.md",
"files": [
"src/*",
"src/**/*",
"!src/**/~*.docx"
]
}
}