-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
75 lines (71 loc) · 1.89 KB
/
mkdocs.yml
File metadata and controls
75 lines (71 loc) · 1.89 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
site_name: Docs / libdestruct
repo_url: https://github.com/mrindeciso/libdestruct
repo_name: mrindeciso/libdestruct
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Nunito
code: Hack
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
plugins:
- search
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
- toc:
permalink: true
nav:
- Home: index.md
- The Basics:
- Getting Started: basics/getting_started.md
- C Types: basics/types.md
- Structs: basics/structs.md
- Pointers: basics/pointers.md
- Arrays: basics/arrays.md
- Enums: basics/enums.md
- Bit Flags: basics/flags.md
- Memory:
- The Inflater: memory/inflater.md
- File-Backed Memory: memory/file_inflater.md
- Resolvers: memory/resolvers.md
- Advanced:
- Bitfields: advanced/bitfields.md
- Freeze, Diff & Reset: advanced/freeze_diff.md
- C Struct Parser: advanced/c_parser.md
- Forward References: advanced/forward_refs.md
- Hex Dump: advanced/hexdump.md
- Unions: advanced/tagged_unions.md
- Struct Alignment: advanced/alignment.md
- Struct Inheritance: advanced/inheritance.md
- Variable-Length Arrays: advanced/vla.md
- Field Offsets: advanced/offset.md