-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
72 lines (69 loc) · 1.71 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
site_name: Godot LuaAPI
repo_url: https://github.com/WeaselGames/godot_luaAPI
plugins:
- search
extra:
version:
provider: mike
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- toc:
toc_depth: 3
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- tables
- attr_list
- md_in_html
- admonition
- pymdownx.details
nav:
- index.md
- Getting Started:
- getting_started/before_you_start.md
- getting_started/installation.md
- getting_started/getting_started.md
- Classes:
- classes/lua_api.md
- classes/lua_coroutine.md
- classes/lua_error.md
- classes/lua_callable_extra.md
- classes/lua_tuple.md
- classes/lua_object_metatable.md
- classes/lua_default_object_metatable.md
- Examples:
- examples/objects.md
- examples/dotnet/example1.md
- Contributing:
- contributing/ways_to_contribute.md
- contributing/development_environment.md
theme:
name: material
logo: assets/sandcastle_icon.png
favicon: assets/sandcastle_icon.png
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.top
- navigation.footer
- search.highlight
- content.code.copy
- content.code.annotate
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: indigo
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: indigo
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode