-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
72 lines (63 loc) · 1.84 KB
/
zensical.toml
File metadata and controls
72 lines (63 loc) · 1.84 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
[project]
site_name = "v8-python"
site_description = "Python bindings for embedding V8 with denoland/rusty_v8."
repo_url = "https://github.com/t3tra-dev/v8-python"
repo_name = "t3tra-dev/v8-python"
docs_dir = "docs"
site_dir = "site"
nav = [
{"Home" = "index.md"},
{"Tutorial" = "tutorial.md"},
{"API Reference" = [
{"Overview" = "api-reference/index.md"},
{"Runtime API" = "api-reference/runtime-api.md"},
{"Host APIs" = "api-reference/host-apis.md"},
{"JS Object" = "api-reference/js-object.md"},
]},
]
[project.theme]
variant = "modern"
features = [
"content.code.copy",
"navigation.sections",
"navigation.top",
]
# Palette toggle for automatic mode
[[project.theme.palette]]
media = "(prefers-color-scheme)"
toggle.icon = "lucide/sun-moon"
toggle.name = "Switch to light mode"
# Palette toggle for light mode
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
# Palette toggle for dark mode
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
toggle.icon = "lucide/moon"
toggle.name = "Switch to system preference"
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
line_spans = "__span"
pygments_lang_class = true
[project.markdown_extensions.pymdownx.superfences]
[project.plugins.mkdocstrings.handlers.python]
inventories = ["https://docs.python.org/3/objects.inv"]
paths = ["docs/_stubs", "."]
[project.plugins.mkdocstrings.handlers.python.options]
allow_inspection = false
annotations_path = "brief"
docstring_style = "google"
line_length = 88
modernize_annotations = true
show_overloads = true
show_signature = true
show_signature_annotations = true
show_signature_type_parameters = true
show_source = false
signature_crossrefs = true