-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (70 loc) · 2.31 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Mumo datamodel Primer</title>
<link href="./script/prism.css" rel="stylesheet" />
<style>
.token.url {
background-color: unset !important;
}
</style>
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove" defer></script>
<script class="remove" src="https://cdn.jsdelivr.net/gh/digitalbazaar/respec-mermaid@1.0.1/dist/main.js"
defer></script>
<script class="remove">
function tryCreateFigures() {
if (window.respecMermaid) {
window.respecMermaid
.createFigures()
.then(console.log)
.catch(console.error);
} else {
setTimeout(tryCreateFigures, 200);
}
}
window.tryCreateFigures = tryCreateFigures;
function redrawPrism() {
if (Prism) {
Prism.highlightAll();
console.log("Prism done");
} else {
setTimeout(redrawPrism, 200);
}
}
window.redrawPrism = redrawPrism;
// All config options at https://respec.org/docs/
var respecConfig = {
specStatus: "base",
editors: [
{name: "Arthur Vercruysse", company: "Ghent University", mailto: "arthur.vercruysse@ugent.be"},
{name: "Ben De Meester", company: "Ghent University"},
],
github: "KNowledgeOnWebScale/MUMO-Primer",
xref: "web-platform",
postProcess: [window.tryCreateFigures, window.redrawPrism],
};
</script>
</head>
<body>
<section id="abstract">
<p>
The Mumo datamodel is used by the Mumo project. This project lifts
measurements from the cultural sector into a data space. Different
properties are measured, most originating from the atmosphere around
cultural heritage pieces. These measurements are automatically derived
and calibrated from a sample made by the device.
</p>
</section>
<section id="sotd">
<p>This document is waiting validation by the consortium.</p>
<p>
Please mail feedback to
<a href="mailto:arthur.vercruysse@ugent.be">arthur.vercruysse@ugent.be</a>, this is much appreciated.
</p>
</section>
<section data-include-format="markdown" data-include="datamodel.md"></section>
<section data-include-format="markdown" data-include="examples.md"></section>
<script src="./script/prism.js"></script>
</body>
</html>