-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspecification.html
More file actions
79 lines (77 loc) · 2.55 KB
/
Copy pathspecification.html
File metadata and controls
79 lines (77 loc) · 2.55 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ZeroLocus62 Specification</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="icon" type="image/png" sizes="64x64" href="favicon.png" />
<script>
(() => {
const pathname = window.location.pathname;
const basePath = pathname
.replace(/\/decode(?:\/[^/]+)?$/, "/")
.replace(/\/specification\/?$/, "/");
const normalizedBase = basePath.endsWith("/")
? basePath
: `${basePath}/`;
const base = document.createElement("base");
base.href = normalizedBase || "/";
document.head.append(base);
})();
</script>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="assets/vendor/katex/katex.min.css" />
<!-- Privacy-friendly analytics by Plausible -->
<script
async
src="https://plausible.io/js/pa-_RTzL5Jq0ZUA1ICKQkL0u.js"
></script>
<script>
((window.plausible =
window.plausible ||
function () {
(plausible.q = plausible.q || []).push(arguments);
}),
(plausible.init =
plausible.init ||
function (i) {
plausible.o = i || {};
}));
plausible.init();
</script>
</head>
<body>
<header class="site-header">
<a class="brand" href=".">
<span class="brand-mark"><img src="logo-header.svg" alt="ZL62" /></span>
<span class="brand-copy">
<strong>ZeroLocus62</strong>
<small>Reference decoder and browser explorer</small>
</span>
</a>
<nav class="site-nav" aria-label="Primary">
<a href=".">Decoder</a>
<a class="is-active" href="specification">Specification</a>
</nav>
</header>
<main class="page-shell specification-shell">
<section class="hero hero-specification">
<div class="hero-copy">
<p class="eyebrow">Specification</p>
<h1>ZeroLocus62 v3.1 wire format</h1>
<p class="hero-text">Specification release v3.1.2.</p>
</div>
<div class="hero-card spec-card">
<p class="eyebrow">Sections</p>
<div id="toc" class="toc-list">{{SPEC_TOC}}</div>
</div>
</section>
<section class="panel specification-panel">
<article id="specification-content" class="markdown-article">
{{SPEC_CONTENT}}
</article>
</section>
</main>
</body>
</html>