-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
69 lines (62 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
site_name: Embedded Systems Linux Development Notes
nav:
- index.md
- QEMU variant:
- qemu/virtualbox.md
- qemu/toolchain.md
- qemu/bootloader.md
- qemu/kernel.md
- qemu/tinysystem.md
- qemu/hardware.md
- qemu/blockfs.md
- qemu/thirdparty.md
- qemu/buildroot.md
- qemu/appdev.md
- qemu/debugging.md
- 'debootstrap': qemu/debootstrap.md
- BeagleBone Black variant:
- bbb/virtualbox.md
- bbb/toolchain.md
- bbb/bootloader.md
- bbb/kernel.md
- bbb/tinysystem.md
- bbb/hardware.md
- bbb/blockfs.md
- bbb/thirdparty.md
- bbb/buildroot.md
- bbb/integration.md
- bbb/appdev.md
- Knowledge Base:
- 'git commit hash expansion': kb/git-hash.md
- 'menuconfig': kb/menuconfig.md
- kb/processors.md
- copying.md
theme:
name: material
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.snippets
- pymdownx.superfences
plugins:
- build_plantuml:
render: 'server' # or "local" for local rendering
bin_path: '/usr/local/bin/plantuml' # ignored when render: server
server: 'http://www.plantuml.com/plantuml' # official plantuml server
disable_ssl_certificate_validation: true # for self-signed and invalid certs
output_format: 'svg' # or "png"
diagram_root: 'docs/diagrams' # should reside under docs_dir
output_folder: 'out'
input_folder: 'src'
input_extensions: '' # comma separated list of extensions to parse, by default every file is parsed
theme_enabled: true
theme_folder: 'include/themes'
theme_light: 'light.puml'
theme_dark: 'dark.puml'
- enumerate-headings:
toc_depth: 0
- search