-
Notifications
You must be signed in to change notification settings - Fork 13
/
mkdocs.yml
70 lines (70 loc) · 1.74 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
site_name: Django RQL Library
site_url: https://github.com/cloudblue/django-rql
repo_name: cloudblue/django-rql
repo_url: https://github.com/cloudblue/django-rql
edit_uri: ""
copyright: Copyright © 2023 Ingram Micro. All Rights Reserved.
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/cloudblue
- icon: material/home
link: https://connect.cloudblue.com/community/
extra_css:
- css/custom.css
theme:
name: material
logo: images/logo_full.png
favicon: images/favicon.ico
palette:
- scheme: "default"
media: "(prefers-color-scheme: light)"
toggle:
icon: "material/lightbulb"
name: "Switch to dark mode"
- scheme: "slate"
media: "(prefers-color-scheme: dark)"
primary: "blue"
toggle:
icon: "material/lightbulb-outline"
name: "Switch to light mode"
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.keys
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- attr_list
- toc:
toc_depth: 3
- tables
plugins:
- glightbox
- macros:
module_name: docs/macros
- search:
lang: en
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_signature_annotations: true
show_source: false
show_bases: false
show_root_toc_entry: false
- autorefs
watch:
- docs
- dj_rql
nav:
- Home: index.md
- Getting started: getting_started.md
- User guide: user_guide.md
- The "Power of Select": select.md
- API Reference: reference.md