-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
46 lines (42 loc) · 990 Bytes
/
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
---
site_name : python-cmk
site_description : API for CheckMK
repo_url : https://github.com/NimVek/python-cmk
theme :
name: material
nav :
- Home: index.md
- Changelog: CHANGELOG.md
- Contributing:
- Guide: CONTRIBUTING.md
- Code of Conduct: CODE_OF_CONDUCT.md
- API: api/
- About:
- License: LICENSE.md
plugins :
- search
- gen-files:
scripts:
- dev/mkdocs.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
options:
docstring_style: google
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_submodules: no
watch:
- src/cmk
markdown_extensions:
- admonition
- codehilite
- extra
- pymdownx.details
- pymdownx.highlight