-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
executable file
·115 lines (101 loc) · 2.8 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
site_name: Vuelto
site_description: A fast and lightweight game engine powered by Go and OpenGL. Easy, fast and lightweight!
site_url: https://vuelto.me
site_author: The Vuelto Team
copyright: The Vuelto Team
repo_name: vuelto-org/vuelto
repo_url: https://github.com/vuelto-org/vuelto
docs_dir: "website"
nav:
- Home: "index.md"
- Getting started:
- 🚀 Quick start: "get-started.md"
- 🛠️ Indepth Installation: "install.md"
- Docs:
- 🏠 Home: "docs/index.md"
- 👤 User Docs:
- 🪟 Windowing: "docs/latest/windowing.md"
- 🖥️ Renderer: "docs/latest/renderer.md"
- 🔊 Audio: "docs/latest/audio.md"
- 🔢 Math: "docs/latest/math.md"
- 📱 Developer Docs:
- 💻 Dev Home: "docs/developers/index.md"
- 💍 3 Ring approach: "docs/developers/rings.md"
- 📋 Contribution Guidelines: "docs/developers/contribution.md"
- Blog: # ✍️
- 📚 Articles: "blog/index.md"
- "We’re one year old!": "blog/were-one-year-old.md"
- Tutorials:
- 🎓 Home: "tutorials/index.md"
- Roadmap:
- 🛣️ V1: "roadmap/v1.md"
- 🛣️ V2: "roadmap/v2.md"
- Discord: "discord.html"
theme:
name: material
logo: logo/pfp-nobg.png
favicon: logo/pfp-nobg.png
features:
- navigation.path
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- toc.follow
- navigation.expand
- content.code.copy
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
normalize_issue_symbols: true
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde