-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
75 lines (66 loc) · 2.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
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
site_name: Java-GI
site_url: https://jwharm.github.io/java-gi/
nav:
- Home: index.md
- Basic usage: usage.md
- Advanced usage: advanced.md
- Examples: examples.md
- Registering new types: register.md
- Composite template classes: templates.md
- Getting started guide:
- Introduction: getting-started/getting_started_00.md
- Basics: getting-started/getting_started_01.md
- Hello, world: getting-started/getting_started_02.md
- Packing: getting-started/getting_started_03.md
- Custom drawing: getting-started/getting_started_04.md
- Building user interfaces: getting-started/getting_started_05.md
- Building applications: getting-started/getting_started_06.md
- Populating the window: getting-started/getting_started_07.md
- Opening files: getting-started/getting_started_08.md
- A menu: getting-started/getting_started_09.md
- A preferences dialog: getting-started/getting_started_10.md
- Adding a search bar: getting-started/getting_started_11.md
- Adding a side bar: getting-started/getting_started_12.md
- Properties: getting-started/getting_started_13.md
- Using icons: getting-started/getting_started_14.md
- Generating bindings: generate.md
theme:
name: material
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
toggle:
icon: material/brightness-4
name: Switch to system preference
icon:
logo: material/coffee
features:
- content.tabs.link
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- admonition
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
- attr_list
- def_list
plugins:
- search
- macros:
module_name: docs/macros/mkdocs-macros