-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
102 lines (83 loc) · 2.61 KB
/
Copy pathzensical.toml
File metadata and controls
102 lines (83 loc) · 2.61 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
site_name = "Python Template"
site_dir = "public"
site_url = "https://ilkersigirci.github.io/python-template/"
site_description = "A cookiecutter template for modern Python projects"
site_author = "İlker SIĞIRCI"
edit_uri = "edit/main/docs/"
repo_url = "https://github.com/ilkersigirci/python-template"
repo_name = "ilkersigirci/python-template"
copyright = "Maintained by <a href=\"https://blog.ilkerflix.com\">İlker SIĞIRCI</a>."
docs_dir = "docs"
watch = ["README.md"]
nav = [
{ Home = "index.md" },
{ Tutorials = [
{ Docker = "tutorials/docker.md" },
{ "IDE Settings" = "tutorials/ide-settings.md" },
{ Uv = "tutorials/uv.md" },
{ Makefile = "tutorials/makefile.md" },
{ Renovate = "tutorials/renovate.md" },
{ "PyPI Trusted Publishing" = "tutorials/pypi-trusted-publishing.md" },
]},
]
[project.theme]
variant = "modern"
features = [
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.code.select",
"content.tabs.link",
"content.tooltips",
"navigation.indexes",
"navigation.instant",
"navigation.instant.progress",
"navigation.path",
"navigation.sections",
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.top",
"navigation.tracking",
"search.highlight",
"toc.follow",
]
[project.theme.icon]
logo = "fontawesome/brands/python"
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.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/ilkersigirci"
[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.inlinehilite]
[project.markdown_extensions.pymdownx.snippets]
[project.markdown_extensions.pymdownx.superfences]
custom_fences = [
{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" },
]
[project.markdown_extensions.pymdownx.tabbed]
alternate_style = true
[project.markdown_extensions.admonition]
[project.markdown_extensions.attr_list]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.abbr]
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.emoji]
emoji_index = "zensical.extensions.emoji.twemoji"
emoji_generator = "zensical.extensions.emoji.to_svg"
[project.markdown_extensions.tables]
[project.markdown_extensions.def_list]