-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathmkdocs.yml
More file actions
196 lines (186 loc) · 4.96 KB
/
mkdocs.yml
File metadata and controls
196 lines (186 loc) · 4.96 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# Project information
site_name: Cute Framework
site_url: https://RandyGaul.github.io/cute_framework/
site_author: Randy Gaul
site_description: >-
The cutest framework available for making 2D games in C/C++
# Repository information
repo_url: https://github.com/RandyGaul/cute_framework
repo_name: RandyGaul/cute_framework
# Copyright
copyright: Copyright © 2019—2025 Randy Gaul
# Configuration
theme:
name: material
logo: assets/logo.png
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.path
- navigation.indexes
- navigation.footer
- content.code.copy
- search.suggest
- search.highlight
palette:
- media: "(prefers-color-scheme)"
scheme: cute
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: cute
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: cute
accent: cute
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
extra_css:
- stylesheets/cute.css
extra_javascript:
- javascripts/redirect.js
# Navigation
not_in_nav: |
/CPU/*.md
/allocator/*.md
/app/*.md
/array/*.md
/atomic/*.md
/audio/*.md
/binding/*.md
/base64/*.md
/collision/*.md
/coroutine/*.md
/draw/*.md
/file/*.md
/graphics/*.md
/haptic/*.md
/hash/*.md
/image/*.md
/input/*.md
/json/*.md
/list/*.md
/map/*.md
/math/*.md
/multithreading/*.md
/net/*.md
/noise/*.md
/path/*.md
/png_cache/*.md
/custom_sprite/*.md
/random/*.md
/sprite/*.md
/string/*.md
/text/*.md
/time/*.md
/utility/*.md
/web/*.md
nav:
- Home: index.md
- Getting Started: getting_started.md
- Topics:
- Topics: topics/index.md
- Application Window: topics/application_window.md
- Game Loop and Time: topics/game_loop_and_time.md
- File I/O: topics/file_io.md
- Drawing: topics/drawing.md
- Debug/Tools UI: topics/dear_imgui.md
- Allocators: topics/allocator.md
- Android Builds: topics/android.md
- Atomics: topics/atomics.md
- Audio: topics/audio.md
- Camera: topics/camera.md
- Collision: topics/collision.md
- Coroutines: topics/coroutines.md
- Custom Sprites: topics/custom_sprites.md
- Data Structures: topics/data_structures.md
- Web Builds with Emscripten: topics/emscripten.md
- Input: topics/input.md
- Input Bindings: topics/input_bindings.md
- macOS + iOS Builds: topics/ios.md
- Low Level Graphics: topics/low_level_graphics.md
- Multithreading: topics/multithreading.md
- Networking: topics/networking.md
- Cute Protocol Standard: topics/protocol.md
- Random Numbers: topics/random_numbers.md
- A Tour of CF Renderer: topics/renderer.md
- Shader Compilation: topics/shader_compilation.md
- Strings: topics/strings.md
- Virtual File System: topics/virtual_file_system.md
- HTTPS: topics/web.md
- Samples:
- samples/index.md
# Sample pages are generated with tools/generate_sample_pages.rb by reading this file
- Fluid Sim: samples/fluid_sim.md
- Waves: samples/waves.md
- Space Shooter: samples/spaceshooter.md
- Made with CF: made_with_cf.md
- Community / Ask for Help: community_ask_for_help.md
- API Reference: api_reference.md
# Plugins
plugins:
- search:
separator: '[\s\-\_]+'
- social
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- github-callouts
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
- 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:
auto_append:
- includes/mkdocs.md
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/RandyGaul/cute_framework
- icon: fontawesome/brands/discord
link: https://discord.gg/ZvxfCyjZCj