-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
93 lines (89 loc) · 2.29 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
86
87
88
89
90
91
92
93
site_name: Python Camunda SDK
site_url: https://mdelmans.github.io/python-camunda-sdk
repo_url: https://github.com/mdelmans/python-camunda-sdk
repo_name: mdelmans/python-camunda-sdk
theme:
name: "material"
logo: img/pycam.svg
favicon: img/pycam.svg
icon:
repo: fontawesome/brands/github-alt
palette:
- media: "(prefers-color-scheme: light)"
scheme: pycam
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- navigation.tabs
- content.code.annotate
- navigation.footer
- navigation.indexes
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.tabbed:
alternate_style: true
- toc:
title: On this page
- pymdownx.snippets:
base_path: "docs/snippets"
- tables
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
- md_in_html
extra_css:
- stylesheets/extra.css
plugins:
- autorefs
- social:
cards_dir: img/social
- mkdocstrings:
handlers:
python:
options:
show_root_toc_entry: false
show_root_full_path: false
inherited_members: true
signature_crossrefs: true
members_order: source
watch:
- python_camunda_sdk
nav:
- Home: index.md
- Quick start:
- quick_start/index.md
- Outbound connectors:
- quick_start/outbound_connectors.md
- quick_start/generate_outbound_template.md
- quick_start/setup_runtime.md
- Inbound connectors:
- quick_start/inbound_connectors.md
- quick_start/generate_inbound_template.md
- Create process: quick_start/create_process.md
- API:
- api/index.md
- connectors:
- api/connectors/config.md
- api/connectors/connector.md
- api/connectors/outbound.md
- api/connectors/inbound.md
- runtime:
- api/runtime/config.md
- api/runtime/runtime.md
- templates:
- api/templates/template.md
- api/templates/generate_template.md