-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
executable file
·141 lines (126 loc) · 3.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
site_name: Vuelto
site_description: A fast and lightweight game engine powered by Go and OpenGL. Easy, fast and lightweight!
site_url: https://vuelto.pp.ua
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"
- 🛠️ In-depth Installation: "install.md"
- Docs:
- 🏠 Docs: "docs/index.md"
- 👤 User Docs:
- 🖥️ Windowing and Renderer: "docs/latest/window-render.md"
- 🔊 Audio: "docs/latest/audio.md"
- 🔥 Events: "docs/latest/events.md"
- 🖼️ Images: "docs/latest/image.md"
- 🎨 Drawing: "docs/latest/draw.md"
- 🔢 Vector Math: "docs/latest/vectors.md"
- 📱 Developer Docs:
- 💻 Dev Home: "docs/developers/index.md"
- 💍 3 Ring approach: "docs/developers/rings.md"
- 📋 Contribution Guidelines: "docs/developers/contribution.md"
- Blog:
- blog/index.md
- Tutorials:
- 🎓 Tutorials: "tutorials/index.md"
- 🌱 Beginner:
- 🚀 Getting Started: "tutorials/beginner/new-project.md"
- 🎨 Rendering: "tutorials/beginner/rendering.md"
- Demo:
- 🏠 Demo: "demo/index.md"
- 📚 Shapes: "demo/1/index.html"
- 📚 Images: "demo/2/index.html"
- 📚 Rendering: "demo/3/index.html"
- Roadmap:
- 📅 Upcoming: "roadmap/index.md"
- 🛣️ V1: "roadmap/v1.md"
- 🛣️ V2: "roadmap/v2.md"
- About:
- 🛈 About: "about/index.md"
- 🛡️ License: "about/license.md"
- 🤝 Code of Conduct: "about/coc.md"
- 👥 Contributing: "about/contributing.md"
theme:
name: material
custom_dir: website/overrides
logo: /logo/pfp-nobg.png
favicon: logo/favicon.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: white
accent: deep-orange # close to vuelto orange
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo # close to vuelto blue
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
plugins:
- blog
- redirects:
redirect_maps:
"discord.md": "https://discord.gg/gZqdRXbbqg"
"repo.md": "https://github.com/vuelto-org/vuelto"
"examples.md": "demo/index.md"
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.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde