mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-06-04 11:25:44 +08:00

This represents the grunt-work of porting the gDocs document to plaintext. There are decisions to make and polish to be applied.
30 lines
1003 B
HTML
30 lines
1003 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="{{ 'assets/css/spec-style.css' | relative_url }}">
|
|
<style>
|
|
body {counter-reset: h2}
|
|
h2 {counter-reset: h3}
|
|
h3 {counter-reset: h4}
|
|
h4 {counter-reset: h5}
|
|
h5 {counter-reset: h6}
|
|
|
|
h2:before {counter-increment: h2; content: counter(h2) ". "}
|
|
h3:before {counter-increment: h3; content: counter(h2) "." counter(h3) ". "}
|
|
h4:before {counter-increment: h4; content: counter(h2) "." counter(h3) "." counter(h4) ". "}
|
|
h5:before {counter-increment: h5; content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "}
|
|
h6:before {counter-increment: h6; content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "}
|
|
|
|
h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before { content: ""; counter-increment: none }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
{{ content }}
|
|
|
|
</body>
|
|
</html>
|
|
|