-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yaml
46 lines (42 loc) · 1.05 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
site_name: Meilisearch Python SDK
site_description: A Python async client for the Meilisearch API
site_url: https://meilisearch-python-sdk.paulsanders.dev
theme:
name: material
locale: en
icon:
repo: fontawesome/brands/github
palette:
- scheme: slate
primary: green
accent: blue
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: default
primary: green
accent: blue
toggle:
icon: material/lightbulb
name: Switch to light mode
features:
- search.suggest
- search.highlight
repo_name: sanders41/meilisearch-python-sdk
repo_url: https://github.com/sanders41/meilisearch-python-sdk
nav:
- Home: index.md
- API:
- AsyncClient: async_client_api.md
- Client: client_api.md
- AsyncIndex: async_index_api.md
- Index: index_api.md
- Decorators: decorators_api.md
- Plugins: plugins.md
- JSON Handler: json_handler.md
- Pydantic: pydantic.md
plugins:
- mkdocstrings
- search
extra_javascript:
- "js/umami.js"