-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
97 lines (95 loc) · 2.58 KB
/
mkdocs.yml
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
site_name: Capsula Documentation
site_url: https://shunichironomura.github.io/capsula/
theme:
name: material
icon:
logo: material/package-variant-closed
repo: fontawesome/brands/github
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
primary: blue grey
accent: blue grey
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: blue grey
accent: blue grey
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
primary: blue grey
accent: blue grey
features:
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
plugins:
- search
- gen-files:
scripts:
- scripts/gen_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_if_no_docstring: true
unwrap_annotated: true
show_root_heading: true
inherited_members: false
separate_signature: true
merge_init_into_class: true
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
group_by_category: false
show_signature_annotations: true
members_order: source
docstring_section_style: spacy
filters:
- "!^_[^_]"
- "!__init_subclass__"
extensions:
- griffe_typingdoc
repo_url: https://github.com/shunichironomura/capsula
repo_name: shunichironomura/capsula
markdown_extensions:
- def_list
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- tables
nav:
- Getting Started:
- Welcome!: index.md
- Concepts: concepts.md
- Configuration: config.md
- Helper functions and variables: helpers.md
- Create your own contexts, watchers, and reporters: extending.md
- Contexts: contexts/
- Watchers: watchers/
- Reporters: reporters/
- API Reference: reference/
extra:
version:
provider: mike