-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
47 lines (44 loc) · 1.21 KB
/
mkdocs.yml
File metadata and controls
47 lines (44 loc) · 1.21 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
site_name: ghc-fastboot
site_description: Zero-cost serialization for GHC Haskell
site_url: https://jhhuh.github.io/ghc-fastboot/
repo_url: https://github.com/jhhuh/ghc-fastboot
repo_name: jhhuh/ghc-fastboot
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- navigation.sections
- navigation.expand
- toc.integrate
markdown_extensions:
- tables
- fenced_code
- codehilite
- toc:
permalink: true
- admonition
nav:
- Home: index.md
- Motivation: motivation.md
- Prior Art: prior-art.md
- GHC Runtime Internals: ghc-internals.md
- Snapshot Format: snapshot-format.md
- Thaw Implementation: thaw.md
- Why Not Process Snapshots: why-not-process-snapshots.md
- Compact Regions & Runtime Limitations: ghc-compact-regions-and-runtime-limitations.md
- Future Directions: future.md