-
Notifications
You must be signed in to change notification settings - Fork 54
/
mkdocs.yml
49 lines (43 loc) · 1.24 KB
/
mkdocs.yml
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
site_name: Zeal 8-bit OS
# site_url: https://Zeal8bit.github.io/Zeal-8-bit-OS
repo_name: Zeal8bit/Zeal-8-bit-OS
repo_url: https://github.com/Zeal8bit/Zeal-8-bit-OS
edit_uri: edit/main/docs/
nav:
- Home: index.md
- Getting Started: getting-started.md
- Implementation Details:
- Memory Mapping: details/memory-mapping.md
- Kernel: details/kernel.md
- User Space: details/user-space.md
- Syscalls: details/syscalls.md
- Drivers: details/drivers.md
- Virtual File System: details/vfs.md
- Supported Targets: supported-targets.md
- System Calls: system-calls.md
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tracking
palette:
- media: "(prefers-color-scheme)"
- media: "(prefers-color-scheme: light)"
scheme: "default"
primary: "deep purple"
accent: "deep purple"
- media: "(prefers-color-scheme: dark)"
scheme: "slate"
primary: "deep purple"
accent: "deep purple"
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences:
custom_fences:
- name: "mermaid"
class: "mermaid"
format: !!python/name:pymdownx.superfences.fence_code_format
- footnotes
- admonition