-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
121 lines (120 loc) · 3.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# mkdocs, version 1.0.4
site_name: luxe engine
nav:
- about: index.md
- install: get.md
- guide:
- intro : guide.md
- workflow : guide/workflow.md
- concepts : guide/concepts.md
- wren primer : guide/wren-primer.md
- tutorials:
- overview : tutorials/overview.md
- create a project : tutorials/hello/index.md
- drawing + input : tutorials/draw-and-input/index.md
- luxe world : tutorials/world/index.md
- luxe editor : tutorials/editor/index.md
- deploy a build : tutorials/deploy/index.md
- playing audio : tutorials/audio/index.md
- learn ...:
- overview: learn/overview.md
- tilemaps : learn/tilemaps.md
- 2D drawing : learn/drawing-2d.md
- modifiers:
- luxe modifiers : learn/modifiers/luxe-modifiers.md
- custom modifiers : learn/modifiers/custom-modifiers.md
- using UI:
- overview : learn/ui/intro.md
- custom controls : learn/ui/custom-controls.md
- basic layout : learn/ui/basic-layout.md
- random numbers : learn/random-numbers.md
- multiple wren files : learn/multiple-wren-files.md
- using modules : learn/modules.md
- manual:
- overview: manual/overview.md
- runtime:
- overview: manual/runtime/overview.md
- asset pipeline:
- overview: manual/assets/overview.md
- rendering:
- overview: manual/rendering/overview.md
- concepts: manual/rendering/concepts.md
- high level: manual/rendering/high-level.md
- low level: manual/rendering/low-level.md
# - release notes:
# - engine : release-notes/engine.md
# - editor : release-notes/editor.md
# - launcher : release-notes/launcher.md
# - agent : release-notes/agent.md
# - modules:
# - overview : modules.md
# - arcade : modules/arcade/api.md
# - tktween : modules/tktween/api.md
- API: api.md
theme:
name: material
custom_dir: overrides
favicon: images/luxe-favicon.png
language: 'en'
logo: 'images/logo.svg'
font:
text: Roboto
code: Roboto Mono
palette:
- scheme: default
primary: 'pink'
accent: 'light blue'
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: 'pink'
accent: 'light blue'
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- instant
- navigation.prune
extra_css:
- css/extra.css
markdown_extensions:
- admonition
- toc:
permalink: True
- footnotes
- meta
- markdown.extensions.attr_list
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.highlight:
linenums_style: pymdownx-inline
- pymdownx.tasklist:
custom_checkbox: True
- pymdownx.tilde
extra:
social:
- icon: 'octicons/mark-github-16'
link: 'https://github.com/luxeengine'
use_directory_urls: true
validation:
absolute_links: relative_to_docs
plugins:
- git-revision-date-localized
- search:
prebuild_index: true
min_search_length: 2
- exclude:
glob:
# - api.md
# - api/**
# +