-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
58 lines (50 loc) · 1.37 KB
/
zensical.toml
File metadata and controls
58 lines (50 loc) · 1.37 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
[project]
site_name = "Seal"
site_url = "https://matthewmckee4.github.io/seal"
site_description = "A Release management tool, written in Rust"
site_author = "Matthew McKee"
repo_url = "https://github.com/MatthewMckee4/seal"
repo_name = "MatthewMckee4/seal"
docs_dir = "docs"
site_dir = "site"
dev_addr = "localhost:3000"
nav = [
{ "Home" = "index.md"},
{ "Reference" = [
{ "Configuration" = "reference/configuration.md"},
{ "CLI" = "reference/cli.md"},
]},
{ "Usage" = [
{ "Bumping Versions" = "usage/bumping_versions.md"},
]},
]
[project.theme]
language = "en"
features = [
"navigation.instant",
"search.highlight",
"navigation.sections"
]
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
primary = "cyan"
accent = "cyan"
scheme = "default"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
primary = "cyan"
accent = "cyan"
scheme = "slate"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
[project.markdown_extensions.pymdownx.highlight]
linenums = true
auto_title = true
[project.markdown_extensions.admonition]
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.superfences]
[project.markdown_extensions.pymdownx.tabbed.slugify]
object = "pymdownx.slugs.slugify"
kwds = { case = "lower" }