-
Notifications
You must be signed in to change notification settings - Fork 14
/
config.toml
149 lines (140 loc) · 3.67 KB
/
config.toml
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
languageCode = 'en-us'
title = 'Mach: zig game engine & graphics toolkit'
description = "The Zig game engine & graphics toolkit for building high-performance, native, truly-cross-platform games, visualizations & desktop/mobile apps."
theme = "minimal"
canonifyURLs = true # Required for Hugo to rewrite Markdown links with baseURL in support of our site versioning
# Important: This should be configured according to the branch.
baseURL = 'https://machengine.org/'
[params]
branch = 'main'
# Other branch-agnostic site params below
#alert = '**Mach v0.3 has been released!** For all the details check out [the announcement](https://devlog.hexops.com/2024/mach-v0.3-released/)'
#alert = '**Mach now _nominates Zig versions for use!_** For details check out [the docs](/docs/nominated-zig)'
debug_opengraph_images = false
[markup.goldmark.renderer]
unsafe = true
[menu]
[[menu.docs]]
identifier = 'docs'
name = 'Overview'
url = '/docs'
weight = 10000
[[menu.docs]]
identifier = 'docs-getting-started'
name = 'Getting started'
url = '/docs/getting-started'
weight = 10001
[[menu.docs]]
identifier = 'docs-math'
name = 'Math'
weight = 20000
[[menu.docs]]
parent = 'docs-math'
identifier = 'docs-math-Overview'
name = 'Overview'
url = '/docs/math'
weight = 20001
[[menu.docs]]
parent = 'docs-math'
identifier = 'docs-math-coordinate-system'
name = 'Coordinate system'
url = '/docs/math/coordinate-system'
weight = 20002
[[menu.docs]]
parent = 'docs-math'
identifier = 'docs-math-traversing-coordinate-systems'
name = 'Traversing coordinate systems'
url = '/docs/math/traversing-coordinate-systems'
weight = 20003
[[menu.docs]]
parent = 'docs-math'
identifier = 'docs-math-matrix-storage'
name = 'Matrix storage'
url = '/docs/math/matrix-storage'
weight = 20004
[[menu.docs]]
identifier = 'docs-gpu'
name = 'GPU'
weight = 30000
[[menu.docs]]
parent = 'docs-gpu'
identifier = 'docs-gpu-overview'
name = 'Overview'
url = '/docs/gpu'
weight = 30001
[[menu.docs]]
parent = 'docs-gpu'
identifier = 'docs-gpu-memory'
name = 'Memory management'
url = '/docs/gpu/memory'
weight = 30002
[[menu.docs]]
parent = 'docs-gpu'
identifier = 'docs-gpu-errors'
name = 'Error handling'
url = '/docs/gpu/errors'
weight = 30003
[[menu.docs]]
identifier = 'docs-general'
name = 'General'
weight = 40000
[[menu.docs]]
parent = 'docs-general'
identifier = 'docs-general-roadmap'
name = 'Roadmap'
url = '/docs/roadmap'
weight = 40001
[[menu.docs]]
parent = 'docs-general'
identifier = 'docs-general-modularity'
name = 'Modularity'
url = '/docs/modularity'
weight = 40002
[[menu.docs]]
parent = 'docs-general'
identifier = 'docs-general-stdlib'
name = 'Standard library'
url = '/docs/stdlib'
weight = 40003
[[menu.docs]]
parent = 'docs-general'
identifier = 'docs-general-zig-version'
name = 'Zig version'
url = '/docs/zig-version'
weight = 40004
[[menu.docs]]
identifier = 'docs-dev-nominated-zig'
parent = 'docs-general'
name = 'Nominated Zig'
url = '/docs/nominated-zig'
weight = 40005
[[menu.about]]
identifier = 'about'
name = 'About the project'
url = '/about'
weight = 100
[[menu.about]]
identifier = 'about-goals'
name = 'Project goals'
url = '/about/goals'
weight = 200
[[menu.about]]
identifier = 'about-platforms'
name = 'Platform support'
url = '/about/platforms'
weight = 300
[[menu.about]]
identifier = 'about-faq'
name = 'FAQ'
url = '/about/faq'
weight = 800
[[menu.about]]
identifier = 'about-dev'
name = 'Development'
weight = 10000
[[menu.about]]
identifier = 'about-dev-style'
parent = 'about-dev'
name = 'Style guide'
url = '/about/style'
weight = 10100