-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathzensical.toml
More file actions
65 lines (59 loc) · 1.71 KB
/
Copy pathzensical.toml
File metadata and controls
65 lines (59 loc) · 1.71 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
[project]
site_name = "CALFEM for Python"
site_url = "https://calfem.github.io/calfem-python/"
site_description = "Documentation for CALFEM for Python."
site_author = "Jonas Lindemann et al"
repo_url = "https://github.com/CALFEM/calfem-python"
repo_name = "CALFEM/calfem-python"
docs_dir = "docs/docs"
site_dir = "site"
copyright = "Copyright © 2016-2026 Jonas Lindemann et al"
nav = [
{ "Home" = "index.md" },
{ "Installation" = "installation.md" },
{ "Using CALFEM" = "using_calfem.md" },
{ "CALFEM Manual" = "https://calfem-python-manual.readthedocs.io/en/latest/" },
{ "Function Reference" = "calfem_reference.md" },
{ "Developer Guide" = "developer.md" },
{ "Mesh Guide" = "mesh_guide.md" }
]
plugins = [
"search",
{ "mkdocstrings" = { handlers = { python = { paths = ["src"] } } } },
]
[project.theme]
logo = "images/calfem.logo.png"
language = "en"
features = [
"content.code.copy",
"navigation.footer",
"navigation.indexes",
"navigation.sections",
"navigation.top",
"navigation.tracking",
"search.highlight",
]
[[project.theme.palette]]
scheme = "default"
primary = "blue"
accent = "blue"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
primary = "blue"
accent = "blue"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
[project.markdown_extensions.admonition]
[project.markdown_extensions.attr_list]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions.pymdownx.arithmatex]
generic = true
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
line_spans = "__span"
pygments_lang_class = true
[project.markdown_extensions.pymdownx.superfences]