-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
70 lines (63 loc) · 1.65 KB
/
Copy pathzensical.toml
File metadata and controls
70 lines (63 loc) · 1.65 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
[project]
site_name = "modern-python"
site_description = "Copier template for modern Python packages"
site_author = "Léo Bernard"
copyright = "Copyright © 2025 Léo Bernard"
repo_url = "https://github.com/leodevian/modern-python"
repo_name = "leodevian/modern-python"
edit_uri = "edit/main/docs/"
nav = [
{ "Home" = [
"index.md",
{ "Release notes" = "changelog.md" },
{ "License" = "license.md" },
] },
]
[project.theme]
features = [
"announce.dismiss",
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.code.select",
"content.footnote.tooltips",
"content.tabs.link",
"content.tooltips",
"navigation.footer",
"navigation.indexes",
"navigation.instant",
"navigation.instant.prefetch",
"navigation.path",
"navigation.sections",
"navigation.top",
"navigation.tracking",
"search.highlight",
"toc.follow",
]
[project.theme.icon]
logo = "lucide/copy-check"
repo = "fontawesome/brands/github"
[[project.theme.palette]]
scheme = "default"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
[project.theme.font]
text = "Inter"
code = "JetBrains Mono"
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/leodevian/modern-python"
[project.markdown_extensions]
admonition = {}
attr_list = {}
md_in_html = {}
pymdownx.details = {}
pymdownx.highlight = { anchor_linenums = true, line_spans = "__span", pygments_lang_class = true }
pymdownx.snippets = {}
pymdownx.superfences = {}
pymdownx.tabbed = { alternate_style = true }