-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
107 lines (88 loc) · 2.76 KB
/
zensical.toml
File metadata and controls
107 lines (88 loc) · 2.76 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
103
104
105
106
107
[project]
site_name = "Pytest Agent Digest"
repo_url = "https://github.com/callowayproject/pytest-digest-report"
edit_uri = "edit/main/docs/"
use_directory_urls = true
extra_javascript = [
"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML",
]
extra_css = [
"assets/css/extra.css",
"assets/css/mkdocstrings.css",
"assets/css/cards.css",
"assets/css/field-list.css",
]
[project.theme]
favicon = "assets/favicon.png"
logo = "assets/images/agent-digest-logo.svg"
features = [
"navigation.sections",
"navigation.path",
"navigation.top",
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.tabs.link",
"toc.integrate",
]
# 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.pymdownx.emoji]
emoji_index = "zensical.extensions.emoji.twemoji"
emoji_generator = "zensical.extensions.emoji.to_svg"
[project.markdown_extensions.pymdownx.tabbed]
alternate_style = true
[project.markdown_extensions.pymdownx.superfences]
custom_fences = [
{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" }
]
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.blocks.caption]
[project.markdown_extensions.pymdownx.highlight]
[project.markdown_extensions.admonition]
[project.markdown_extensions.attr_list]
[project.markdown_extensions.def_list]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions.tables]
[project.plugins.mkdocstrings.handlers.python]
inventories = ["https://docs.python.org/3/objects.inv"]
paths = ["pytest_agent_digest"]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "google"
inherited_members = true
show_source = false
allow_inspection = true
docstring_section_style = "spacy"
enable_inventory = true
group_by_category = true
line_length = 80
members_order = "alphabetical"
merge_init_into_class = true
separate_signature = true
show_docstring_parameters = true
show_root_toc_entry = true
show_signature_annotations = true
show_symbol_type_heading = true
show_symbol_type_toc = true
show_category_heading = true
signature_crossrefs = true
summary = true
[project.plugins.gen-files]
scripts = ["docs/gen_doc_stubs.py"]