-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
123 lines (113 loc) · 3.24 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
site_name: bpmnServer docs
docs_dir: docs
site_dir: site
repo_url: https://github.com/bpmnServer/bpmn-server
theme:
name: material
favicon: favicon.ico
features:
- content.tooltips
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- toc.integrate
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
- navigation.footer
language: en
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: teal
accent: purple
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: teal
accent: lime
plugins:
- search
markdown_extensions:
- toc:
permalink: "#"
- attr_list
- abbr
- md_in_html
- tables
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
use_directory_urls: true
nav:
- bpmn-server:
- Overview: index.md
- 'Invoking Workflows': invokation.md
- 'Workflow Execution': execution.md
- 'Scripting': scripting.md
- 'Security': security.md
- 'Data': data.md
- 'Setup': setup.md
- 'Application Integration': customization.md
- 'Advanced Topics': advanced.md
- 'Frequently Asked Questions': faq.md
- Examples/Features:
- 'Service Task': examples/serviceTask.md
- 'Script Task': examples/scriptTask.md
- 'Conditional Flow': examples/conditionalFlow.md
- 'Scripts Listeners': examples/scriptEvents.md
- 'Gateways': examples/gateways.md
- 'Event Based Gateway': examples/ebg.md
- 'Multiple Start Events': examples/multiStartEvent.md
- 'Input Fields': examples/inputFields.md
- 'Throwing/Catching Messages': examples/msg-throw-catch.md
- 'Boundary Events': examples/boundary-events.md
- 'Error/Escalate Events': examples/error_events.md
- 'Call Process': examples/callProcess.md
- 'Multi-instances (loop)': examples/loop.md
- 'UserTask Assignment': security.md
- 'Timers': timers.md
- 'SubProcess': examples/subProcess.md
- 'Transactions': examples/transactions.md
- 'Ad Hoc SubProcess': examples/adHoc.md
- API:
- 'API Summary': api-summary.md
- 'API Example': examples//BuyCar-Server.md
- 'API': api/readme.md
- Tutorial:
- 'Getting Started': tutorial/start.md
- 'Enable Security': tutorial/tutorial-security.md
- 'Start a Leave Application': tutorial/tutorial-user1.md
- 'Manager to Approve': tutorial/tutorial-manager1.md
- 'Let us review': tutorial/tutorial-review.md
- 'Execute the exercise from NodeJs': tutorial/tutorial-script.md
- bpmn-web:
- 'install': bpmn-web.md
- 'Executing Example': examples/BuyCar-Web.md
- bpmn-client:
- 'install': bpmn-client.md
- 'Executing Example': examples/BuyCar-Remote.md
- 'Client API': client-api.md
not_in_nav: api/