-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
85 lines (81 loc) · 1.85 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
85
site_name: Drift Python Client
docs_dir: .
nav:
- Home:
- README: README.md
- What is PANDA|Drift?: docs/panda_drift.md
- Dependencies: docs/dependencies.md
- Tutorials:
- docs/tutorials/quick_start_windows.md
- docs/tutorials/extract_data.ipynb
- docs/tutorials/denoising_data.ipynb
- API Reference:
- DriftClient: docs/api/drift_client.md
- Package: docs/api/package.md
repo_name: panda-official/DriftPythonClient
repo_url: https://github.com/panda-official/DriftPythonClient
edit_uri: edit/develop/docs
extra:
homepage: https://panda.technology
# Configuration
theme:
name: material
logo: docs/img/logo.svg
favicon: docs/img/favicon.png
language: en
palette:
primary: black
font:
text: Roboto
code: JetBrains Mono
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.indexes
- navigation.top
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed
- pymdownx.tilde
- pymdownx.snippets:
base_path: docs
check_paths: true
- plantuml_markdown:
format: svg
plugins:
- same-dir
- mkdocs-jupyter:
include: [ "docs/tutorials/*.ipynb" ]
- mkdocstrings:
default_handler: python
enable_inventory: false
handlers:
python:
rendering:
show_root_heading: true
show_bases: false
show_source: false
selection:
docstring_style: google
- autorefs