-
Notifications
You must be signed in to change notification settings - Fork 6
/
respec.template
72 lines (72 loc) · 1.46 KB
/
respec.template
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>$title$</title>
<script
src="https://www.w3.org/Tools/respec/respec-w3c"
class="remove"
defer
></script>
<script class="remove">
// All config options at https://respec.org/docs/
var respecConfig = {
specStatus: "CG-DRAFT",
editors: [
$for(editor)$
{
"name":
"$editor.name$",
"company":
"$editor.company$",
"companyURL":
"$editor.companyURL$"},
$endfor$
],
authors: [
$for(author)$
{
"name":
"$author.name$",
"company":
"$author.company$",
"companyURL":
"$author.companyURL$"},
$endfor$
],
github: "ontolex/morph",
shortName: "morph",
group: "ontolex",
latestVersion: "https://ontolex.github.io/morph/",
};
</script>
<style>
.entity {
border: 1px solid #000080;
width: 80%;
margin-left: auto;
margin-right: auto;
padding: 10px;
}
.entity > p:first-child {
margin-top: 3px;
padding-bottom: 5px;
border-bottom: 1px solid #000080;
font-size: 120%;
color: var(--heading-text);
page-break-after: avoid;
page-break-inside: avoid;
line-height: 1.2; /* Keep wrapped headings compact */
hyphens: manual; /* Hyphenated headings look weird */
}
.description {
border-top: 1px dashed #808080;
margin-top: 5px;
padding-bottom: 5px;
}
</style>
</head>
<body>
$body$
</body>
</html>