-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
149 lines (140 loc) · 3.87 KB
/
mkdocs.yml
File metadata and controls
149 lines (140 loc) · 3.87 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
site_name: Process Manager
site_url: https://talbotknighton.github.io/process_manager/
site_author: Talbot Knighton and David Gable
copyright: Copyright © 2026 Talbot Knighton and David Gable
repo_url: https://github.com/TalbotKnighton/process_manager
repo_name: process_manager
remote_branch: gh-pages
remote_name: origin
watch:
- docs
- src
- scripts
nav:
- Home: index.md
- User Guides:
- Named Values: user-guides/named-values.md
- Distributions: user-guides/distributions.md
- Code Reference: reference/
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: pink
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: pink
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.tabs
- navigation.instant
- navigation.instant.preview
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.top
- navigation.path
- navigation.sections
- navigation.tabs.sticky
- navigation.footer
- content.action.edit
- content.action.view
- content.code.copy
- content.code.select
- content.code.annotate
- content.tooltips
- search.highlight
- search.suggest
- search.share
- content.tabs.link
- content.footnote.tooltips
plugins:
- search
- open-in-new-tab:
add_icon: true
- gen-files:
scripts:
- scripts/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
paths: [src]
options:
modernize_annotations: true
backlinks: tree
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_root_heading: true
show_root_full_path: false
show_source: true
show_bases: true
members_order: source
show_symbol_type_heading: true
show_symbol_type_toc: true
show_signature_annotations: true
separate_signature: true
summary: false # set to true to get summary tables
inherited_members: true
inheritance_diagram_direction: TD
show_inheritance_diagram: true
show_attribute_values: true
signature_crossrefs: true
extensions:
- pydantic: { schema: true }
inventories:
- https://docs.python.org/3/objects.inv
- https://mkdocstrings.github.io/griffe/objects.inv
- https://docs.pydantic.dev/latest/objects.inv
- https://numpy.org/doc/stable/objects.inv
- glightbox
markdown_extensions:
- abbr
- admonition
- attr_list
- md_in_html
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
auto_title: true
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.snippets
- pymdownx.blocks.caption
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- tables
- footnotes
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
extra_javascript:
- https://unpkg.com/mermaid@10.9.0/dist/mermaid.min.js
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
- javascripts/tablesort.js