forked from kili-technology/kili-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
84 lines (78 loc) · 1.88 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
## Project information
site_name: Python SDK
site_description: Kili Python SDK
site_url: https://python-sdk-docs.kili-technology.com/
## Repository
repo_url: https://github.com/kili-technology/kili-python-sdk
repo_name: Kili Python SDK
edit_uri: '' #disables edit button
## Site Architecture
nav:
- Python SDK:
- API Key: api_key.md
- Asset: asset.md
- Issue: issue.md
- Label: label.md
- Notification: notification.md
- Organization: organization.md
- Project: project.md
- Project User: project_user.md
- Project Version: project_version.md
- User: user.md
- Command line interface:
- Getting Started: cli/index.md
- Reference: cli/reference.md
## Configuration
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_root_heading: false
heading_level: 3
show_source: true
show_category_heading: false
show_root_toc_entry: false
selection:
docstring_style: google
filters:
- '!^__' # exclude all members starting with __
docstring_options:
replace_admonitions: yes
watch:
- kili
- mike:
version_selector: true
markdown_extensions:
- admonition
- def_list
- mkdocs-click
- attr_list
- md_in_html
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra:
version:
provider: mike
analytics:
provider: google
property: G-HRVEXSEWL0
## Theme and Design
theme:
name: 'material'
palette:
scheme: kili
logo: assets/kili_logo.png
favicon: assets/kili_favicon.ico
language: en
font:
text: Archia
features:
- navigation.tabs
extra_css:
- stylesheets/extra.css