-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
90 lines (83 loc) · 2.05 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
site_name: FastSQLA
site_url: https://mydomain.org/FastSQLA
repo_name: hadrien/FastSQLA
repo_url: https://github.com/hadrien/fastsqla
edit_uri: edit/main/docs/
nav:
- Get Started:
- Welcome to FastSQLA: index.md
- Usage:
- Setup: setup.md
- Object-relational mapping: orm.md
- SQLAlchemy Session: session.md
- Pagination: pagination.md
- Changelog: changelog.md
theme:
favicon: images/favicon.png
icon:
logo: material/database
name: material
features:
- announce.dismiss
- content.code.annotate
- content.code.copy
- content.tabs.link
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.suggest
- toc.follow
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to system preference
plugins:
- autorefs
- glightbox
- mkdocstrings:
enable_inventory: true
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://docs.sqlalchemy.org/en/20/objects.inv
- https://fastapi.tiangolo.com/objects.inv
- search
markdown_extensions:
- abbr
- admonition
- attr_list
- md_in_html
- pymdownx.blocks.caption
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- toc:
permalink: true
watch:
- docs
- src