-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
106 lines (100 loc) · 3.61 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
site_name: PrettyQt
site_description: "Python wrapper for PySide6 / PyQt6."
repo_url: "https://github.com/phil65/prettyqt"
site_url: https://phil65.github.io/PrettyQt/
watch: [mkdocs.yml, README.md, CHANGELOG.md]
copyright: Copyright © 2023 Philipp Temminghoff
use_directory_urls: true
theme:
name: material
custom_dir: docs/overrides
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- content.code.copy
- content.code.select
- content.code.annotate
- content.tooltips
- navigation.instant # make things faster
- navigation.tracking # update URL based on current item in TOC
- navigation.path # shows breadcrumbs
- navigation.tabs # make top level tabs
- navigation.prune
# - navigation.expand # expand all subsections in left sidebar by defuault
- navigation.indexes # documents can be directly attached to sections (overview pages)
- navigation.footer # next/previous page buttons in footer
# - navigation.tabs.sticky # and make them sticky
- toc.follow # makes toc follow scrolling
# - toc.integrate # integrates toc into left menu
- navigation.top # adds back-to-top button
# - navigation.sections # top-level sections are rendered as groups
plugins:
- search
# - social # this one has dependency which is not on pypi for windows. (cairocffi)
- tags
- glightbox # better image support
- markdown-exec
- mknodes:
build_fn: docs/gen_pages.py:build
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- url: https://docs.python.org/3/objects.inv
domains: [std, py]
- url: https://raw.githubusercontent.com/phil65/PrettyQt/master/docs/qt6.inv
base_url: https://doc.qt.io/qtforpython/
domains: [std, py]
- url: https://docs.python-requests.org/en/master/objects.inv
domains: [std, py]
- url: https://phil65.github.io/mknodes/objects.inv
domains: [std, py]
options:
# https://mkdocstrings.github.io/python/usage/
show_docstring_returns: false
show_source: true
show_signature_annotations: true
show_symbol_type_toc: true
show_symbol_type_heading: true
# merge_init_into_class: true
# ignore_init_summary: true
# show_if_no_docstring: true
inherited_members: false
signature_crossrefs: true
# separate_signature: true
line_length: 90
markdown_extensions:
- pymdownx.superfences # required for markdown-exec since it checks for it in on_config
- toc:
toc_depth: 2
extra_javascript:
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- javascripts/tablesort.js
# extra:
# social:
# - icon: fontawesome/brands/github
# link: https://github.com/phil65
# - icon: fontawesome/brands/gitter
# link: https://matrix.to/#/#prettyqt:gitter.im
# - icon: fontawesome/brands/python
# link: https://pypi.org/project/prettyqt/
# generator: false disable "made with Material"
# version: # multiple doc versions
# provider: mike