-
Notifications
You must be signed in to change notification settings - Fork 13
/
mkdocs.yml
55 lines (50 loc) · 1.48 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
site_name: broadworks_ocip
site_description: "Automatic documentation from sources, for MkDocs."
site_url: "https://nigelm.github.io/broadworks_ocip/"
repo_url: "https://github.com/nigelm/broadworks_ocip"
repo_name: "nigelm/broadworks_ocip"
nav:
- Overview: index.md
- Usage: usage.md
- API Reference:
- API: api/api.md
- Base Classes: api/base.md
- Exceptions: api/exceptions.md
- Requests: api/requests.md
- Responses: api/responses.md
- Types: api/types.md
- Internal Design: internals.md
- Contributing: contributing.md
- Changelog: changelog.md
- License: license.md
- To Do: todo.md
theme:
name: material
features:
- navigation.instant
- navigation.expand
extra_css:
- css/mkdocstrings.css
markdown_extensions:
- pymdownx.highlight:
linenums_style: pymdownx.inline
- pymdownx.magiclink
- pymdownx.superfences
- markdown_include.include
- md_in_html
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
selection:
new_path_syntax: yes
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
watch:
- broadworks_ocip
# end