-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
76 lines (70 loc) · 1.88 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
75
76
site_name: MGPP Instruction
repo_url: https://github.com/PlumyGames/mgpp
repo_name: MGPP
theme:
name: material
logo: icon.png
custom_dir: overrides
favicon: favicon.png
icon:
repo: fontawesome/brands/github
shortcuts:
help: 191 # ?
next: 78 # n
previous: 66 # p
search: 83 # s
features:
- navigation.tabs
- content.tabs.link
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
#page tree
nav:
- Home:
- Overview: index.md
- Installation: home/installation.md
- Samples: home/samples.md
- Mindustry:
- Overview: mindustry/overview.md
- Dependency: mindustry/dependency.md
- Client: mindustry/client.md
- Server: mindustry/server.md
- Mods: mindustry/mods.md
- Run: mindustry/run.md
- Deploy: mindustry/deploy.md
- Concepts: mindustry/concepts.md
- Mindustry Assets:
- Overview: assets/overview.md
- Advanced: assets/advanced.md
- Task:
- Overview: task/overview.md
- downloadClient: task/task-downloadClient.md
- downloadServer: task/task-downloadServer.md
- runClient: task/task-runClient.md
- runServer: task/task-runServer.md
- resolveMods: task/task-resolveMods.md
- deploy: task/task-deploy.md
- dexJar: task/task-dexJar.md
- genModHjson: task/task-genModHjson.md
- genResourceClass: task/task-genResourceClass.md
- antiAliasing: task/task-antiAliasing.md
markdown_extensions:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- pymdownx.tilde
- pymdownx.snippets
- meta
- toc:
permalink: "#"