-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
51 lines (49 loc) · 1.23 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
site_name: Völur SDK documentation
repo_url: https://github.com/volur-ai/python-volur-sdk
theme:
name: material
features:
- content.code.copy
- content.code.annotate
plugins:
- search
- gen-files:
scripts:
- scripts/gen_pages.py # https://mkdocstrings.github.io/recipes/#automatic-code-reference-pages
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
default_handler: python
handlers:
python:
paths:
- src
- gen
import:
- https://googleapis.dev/python/google-api-core/latest/objects.inv
# Please keep the following list of extensions in alphabetical order
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- Home: 'index.md'
- Installation: installation.md
- Authentication: authentication.md
- Getting Started: getting-started.md
- Data Model: 'data-model.md'
- Deploying: 'deploying.md'
- API Reference: reference/
- Examples: examples/
watch:
- src/
- gen/
- scripts/