-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.json
101 lines (101 loc) · 2.91 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
{
"templateId": "smp",
"organizationId": "dsw",
"version": "1.0.0",
"name": "Software Management Plan",
"description": "Human-readable and machine-actionable SMP",
"license": "Apache-2.0",
"metamodelVersion": 16,
"allowedPackages": [
{
"orgId": "dsw",
"kmId": "smp",
"minVersion": "1.0.0",
"maxVersion": null
}
],
"formats": [
{
"uuid": "5276e716-395a-4b77-b362-5168e3131410",
"name": "HTML",
"icon": "fas fa-file-alt",
"steps": [
{
"name": "jinja",
"options": {
"template": "src/index.html.j2",
"content-type": "text/html",
"extension": "html"
}
}
]
},
{
"uuid": "68c26e34-5e77-4e15-9bf7-06ff92582257",
"name": "PDF",
"icon": "fas 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",
"icon": "fas 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"
}
}
]
},
{
"uuid": "8e691f6b-b29d-43d0-b83a-13817fddebcd",
"name": "JSON",
"icon": "fas fa-file-code",
"steps": [
{
"name": "jinja",
"options": {
"template": "src/template.json.j2",
"content-type": "application/json",
"extension": "json"
}
}
]
}
],
"_tdk": {
"version": "4.14.0",
"readmeFile": "README.md",
"files": [
"src/**/*.j2",
"src/style.css",
"src/word/reference.docx",
"LICENSE"
]
}
}