-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
119 lines (116 loc) · 3.31 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
site_name: Cookie Composer
repo_url: https://github.com/callowayproject/cookie-composer
edit_uri: edit/master/docs/
copyright: Calloway Project
watch:
- overrides
theme:
name: material
custom_dir: overrides
logo: assets/img/composer-logo.svg
favicon: assets/favicon.png
features:
- navigation.tabs
- navigation.sections
- navigation.path
- navigation.indexes
- toc.integrate
- content.action.edit
- content.action.view
- content.code.annotate
- content.tabs.link
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
use_directory_urls: true
markdown_extensions:
- abbr
- admonition
- attr_list
- customblocks
- def_list
- footnotes
- md_in_html
- mdx_truly_sane_lists
- mkdocs-click
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight
- pymdownx.snippets:
base_path: ["docs/_includes"]
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- smarty
- toc:
permalink: true
toc_depth: 3
- tables
plugins:
- search
- git-revision-date-localized
- git-authors:
show_email_address: false
exclude:
- reference/api/*
- include-markdown
- drawio
- literate-nav:
nav_file: SUMMARY.md
- gen-files:
scripts:
- docs/gen_doc_stubs.py
- mkdocstrings:
custom_templates: overrides/mkdocstrings
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://docs.pydantic.dev/latest/objects.inv
- https://jinja.palletsprojects.com/en/3.1.x/objects.inv
- https://cookiecutter.readthedocs.io/en/stable/objects.inv
- https://gitpython.readthedocs.io/en/stable/objects.inv
- https://click.palletsprojects.com/en/8.1.x/objects.inv
options:
allow_inspection: true
docstring_style: google
docstring_options:
ignore_init_summary: true
docstring_section_style: spacy
enable_inventory: true
group_by_category: true
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_source: false
show_symbol_type_heading: true
show_symbol_type_toc: true
show_category_heading: true
extra_javascript:
- "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML"
extra_css:
- assets/css/custom.css
- assets/css/mkdocstrings.css
- assets/css/cards.css
- assets/css/field-list.css