-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
93 lines (88 loc) · 2.32 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
site_name: images-upload-cli
repo_url: https://github.com/deadnews/images-upload-cli
edit_uri: blob/main/docs/
nav:
- Overview: index.md
- Changelog: changelog.md
- API reference: reference/ # defer to gen-files + literate-nav
- CLI Reference: reference-cli.md
watch:
- src
- README.md
- CHANGELOG.md
theme:
name: material
palette:
- media: "(prefers-color-scheme)"
toggle:
name: Switch to light mode
icon: material/brightness-auto
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
name: Switch to dark mode
icon: material/brightness-7
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
name: Switch to system preference
icon: material/brightness-4
features:
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.code.select
- content.tooltips
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
markdown_extensions:
- attr_list
- mkdocs-click
- pymdownx.snippets
- pymdownx.superfences
- toc:
permalink: true
plugins:
- search
- gen-files:
scripts:
- docs/scripts/gen_ref_nav.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_options:
ignore_init_summary: true
docstring_section_style: table
docstring_style: google
filters: ["!^_"]
heading_level: 1
inherited_members: true
members_order: source
merge_init_into_class: true
separate_signature: true
show_root_full_path: false
show_root_heading: true
show_signature_annotations: true
show_submodules: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary: true
import:
- https://docs.python.org/3/objects.inv
- https://pillow.readthedocs.io/en/stable/objects.inv