-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathzensical.toml
More file actions
79 lines (68 loc) · 2.2 KB
/
zensical.toml
File metadata and controls
79 lines (68 loc) · 2.2 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
[project]
site_name = "ruby-bindgen"
site_description = "Generate Ruby bindings from C and C++ header files"
site_url = "https://ruby-rice.github.io/ruby-bindgen/"
repo_name = "ruby-rice/ruby-bindgen"
repo_url = "https://github.com/ruby-rice/ruby-bindgen"
nav = [
{ "Home" = "index.md" },
{ "C Bindings" = [
{ "Overview" = "c/c_bindings.md" },
{ "Getting Started" = "c/getting_started.md" },
{ "Output" = "c/output.md" },
{ "Filtering" = "c/filtering.md" },
{ "Type Mapping" = "c/types.md" },
{ "Constants" = "c/constants.md" },
{ "Library Loading" = "c/library_loading.md" },
{ "Version Guards" = "c/version_guards.md" },
{ "Customizing" = "c/customizing.md" },
]},
{ "C++ Bindings" = [
{ "Overview" = "cpp/cpp_bindings.md" },
{ "Getting Started" = "cpp/getting_started.md" },
{ "Output" = "cpp/output.md" },
{ "Filtering" = "cpp/filtering.md" },
{ "Classes" = "cpp/classes.md" },
{ "Enums" = "cpp/enums.md" },
{ "Templates" = "cpp/templates.md" },
{ "Operators" = "cpp/operators.md" },
{ "Iterators" = "cpp/iterators.md" },
{ "Buffers" = "cpp/buffers.md" },
{ "Customizing" = "cpp/customizing.md" },
]},
{ "CMake Bindings" = [
{ "Overview" = "cmake/cmake_bindings.md" },
{ "Getting Started" = "cmake/getting_started.md" },
{ "Output" = "cmake/output.md" },
{ "Filtering" = "cmake/filtering.md" },
]},
{ "Configuration" = "configuration.md" },
{ "Updating Bindings" = "updating_bindings.md" },
{ "Prior Art" = "prior_art.md" },
{ "Architecture" = "architecture.md" },
]
[project.theme]
variant = "classic"
features = [
"navigation.top",
"search.highlight",
"content.code.copy",
]
[[project.theme.palette]]
scheme = "default"
primary = "teal"
accent = "teal"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
primary = "teal"
accent = "teal"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
[project.markdown_extensions.tables]
[project.markdown_extensions.pymdownx.highlight]
[project.markdown_extensions.pymdownx.superfences]
custom_fences = [
{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" }
]