-
Notifications
You must be signed in to change notification settings - Fork 17
/
mkdocs.yml
78 lines (73 loc) · 1.71 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
site_name: pyODK
edit_uri: https://github.com/getodk/pyodk/tree/master/docs
repo_url: https://github.com/getodk/pyodk
repo_name: getodk/pyodk
docs_dir: docs
watch:
- ./README.md
- ./docs
- ./pyodk
nav:
- Overview: index.md
- Client: client.md
- .entities: entities.md
- .entity_lists: entity_lists.md
- .forms: forms.md
- .projects: projects.md
- .submissions: submissions.md
- HTTP methods: http-methods.md
- Examples: examples/README.md
theme:
name: material
logo: assets/logo.svg
favicon: assets/favicon.ico
custom_dir: docs/overrides
features:
- content.action.edit
- content.action.view
- content.code.copy
- navigation.expand
- navigation.instant
- navigation.top
- navigation.tracking
- toc.follow
icon:
view: material/file-eye-outline
edit: material/file-edit-outline
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
extra_css:
- assets/extra_css.css
plugins:
- search
- mkdocstrings:
enabled: !ENV [ENABLE_MKDOCSTRINGS, true]
default_handler: python
handlers:
python:
options:
docstring_style: sphinx
members_order: alphabetical
show_bases: false
show_root_toc_entry: false
show_source: false
- mkdocs-jupyter
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- toc:
permalink: true