-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
93 lines (88 loc) · 3.12 KB
/
mkdocs.yml
File metadata and controls
93 lines (88 loc) · 3.12 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
site_name: ONB Modding
site_url: https://alrysc.github.io/onb_docs
theme:
name: material
palette:
- scheme: slate
toggle:
icon: material/weather-sunny
name: Dark mode
primary: green
- scheme: default
toggle:
icon: material/weather-night
name: Light mode
primary: blue
features:
- navigation.instant
- navigation.instant.progress
- navigation.tabs
- navigation.expand
- content.code.copy
- content.code.select
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
nav:
- Home:
- Introduction: index.md
- Changelog: changelog.md
- Lua Primer:
- Overview: lua/index.md
- Comments: lua/comments.md
- Variables:
- Overview: lua/variables/index.md
- Numbers: lua/variables/numbers.md
- Strings: lua/variables/strings.md
- Booleans: lua/variables/booleans.md
- Functions: lua/variables/functions.md
- Tables: lua/variables/tables.md
- Boolean Expressions: lua/boolean_expressions.md
- Comparisons: lua/comparisons.md
- Control Structures: lua/control_structures.md
- Scope: lua/scope.md
- Tables As Objects: lua/objects.md
- Useful Functions: lua/useful_functions.md
- Engine Objects:
- Introduction: onb_overview/index.md
- Field: onb_overview/field.md
- Entities:
- Entity: onb_overview/entities/index.md
- Artifact: onb_overview/entities/artifact.md
- Spell: onb_overview/entities/spell.md
- Obstacle: onb_overview/entities/obstacle.md
- Character: onb_overview/entities/character.md
- Player: onb_overview/entities/player.md
- Enums:
- Overview: onb_overview/enums/index.md
- Element: onb_overview/enums/element.md
- Hit: onb_overview/enums/hit.md
- TileState: onb_overview/enums/tilestate.md
- Direction: onb_overview/enums/direction.md
- Team: onb_overview/enums/team.md
- Lifetimes: onb_overview/enums/lifetimes.md
- DefenseOrder: onb_overview/enums/defenseorder.md
- LockType: onb_overview/enums/locktype.md
- Input: onb_overview/enums/input.md
- Rank: onb_overview/enums/rank.md
- Highlight: onb_overview/enums/highlight.md
- Shadow: onb_overview/enums/shadow.md
- ColorMode: onb_overview/enums/colormode.md
- Playback: onb_overview/enums/playback.md
- AudioPriority: onb_overview/enums/audiopriority.md
- AudioType: onb_overview/enums/audiotype.md
- CardClass: onb_overview/enums/cardclass.md
- Blocks: onb_overview/enums/blocks.md
- EntityStatus: onb_overview/enums/entitystatus.md
- v2.1 Changes:
- Full Changelog: v2.1/overview.md
- Changelog: v2.1/changelog.md
- Recommended Upgrades: v2.1/recommended_upgrades.md
- Breaking Changes: v2.1/breaking_changes.md