-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yaml
70 lines (70 loc) · 1.83 KB
/
mkdocs.yaml
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-semantic-search
site_url: https://kacperlukawski.github.io/django-semantic-search/
site_description: Bringing semantic search to Django. Integrates seamlessly with Django ORM.
repo_url: https://github.com/kacperlukawski/django-semantic-search
nav:
- Home: index.md
- Quickstart: quickstart.md
- Usage: usage.md
- API Reference:
- Documents: api/documents.md
- Backends: api/backends.md
- Embeddings: api/embeddings.md
theme:
name: material
logo: assets/logo.png
favicon: assets/favicon.png
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- search.suggest
- search.highlight
- toc.integrate
- navigation.tabs
- content.code.copy
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
annotations_path: brief
show_root_heading: true
show_root_toc_entry: true
show_symbol_type_heading: true
heading_level: 3
docstring_style: sphinx
- social:
cards_layout_options:
font_family: Roboto
logo: assets/logo.png
background_color: "#ff6e42"
color: "white"
markdown_extensions:
- attr_list
- admonition
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences