-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
88 lines (80 loc) · 2.37 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: SQLAlchemy bind manager
site_description: 'A manager to easily handle multiple SQLAlchemy configurations'
site_author: 'Federico Busetti'
docs_dir: docs/
repo_name: 'febus982/sqlalchemy-bind-manager'
repo_url: 'https://github.com/febus982/sqlalchemy-bind-manager'
plugins:
- search
- awesome-pages
- mike
# - gen-files:
# scripts:
# - scripts/gen_pages.py # or any other name or path
- mkdocstrings:
default_handler: python
handlers:
python:
options:
# General options
show_source: true
show_bases: false
# Headings options
show_root_heading: true
show_root_members_full_path: true
# Members options
inherited_members: true
group_by_category: true
members_order: source
# Docstrings options
docstring_style: sphinx
merge_init_into_class: false
show_if_no_docstring: false
# Signature options
show_signature_annotations: true
separate_signature: true
signature_crossrefs: true
unwrap_annotated: true
theme:
name: material
custom_dir: mkdocs-overrides
features:
- navigation.expand
- navigation.top
- content.code.copy
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: teal
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: teal
toggle:
icon: material/brightness-7
name: Switch to auto mode
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/febus982/sqlalchemy-bind-manager
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/federico-b-a0b78232
version:
provider: mike
default: stable
markdown_extensions:
- pymdownx.details
- pymdownx.blocks.admonition
- pymdownx.blocks.details
- pymdownx.snippets
- pymdownx.superfences