-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
130 lines (123 loc) · 3.55 KB
/
mkdocs.yml
File metadata and controls
130 lines (123 loc) · 3.55 KB
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
124
125
126
127
128
129
130
site_name: Workflows Manager Documentation
repo_url: https://github.com/dl1998/workflows-manager
repo_name: dl1998/workflows-manager
edit_uri: edit/main/docs/
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
theme:
name: "material"
custom_dir: overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: white
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- header.autolink
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- toc.integrate
- toc.follow
- content.tabs.link
- content.action.edit
- content.action.view
- content.code.copy
- content.code.annotate
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: "sphinx"
show_root_toc_entry: false
show_source: false
filters:
- "!^_"
- "!^__"
- mike:
alias_type: symlink
redirect_template: null
deploy_prefix: ''
canonical_version: null
version_selector: true
css_dir: css
javascript_dir: js
- glightbox
- markdownextradata:
data: ../versions.json
- autorefs:
resolve_closest: true
- build_plantuml:
render: 'local'
bin_path: 'plantuml'
server: 'http://www.plantuml.com/plantuml'
disable_ssl_certificate_validation: true
output_format: 'svg'
allow_multiple_roots: false
diagram_root: 'docs/diagrams'
output_folder: 'out'
input_folder: 'src'
input_extensions: ''
theme_enabled: true
theme_folder: "include/themes"
theme_dark: "dark.puml"
extra:
version:
provider: mike
workflows_version: !ENV WORKFLOWS_VERSION
nav:
- "Getting Started":
- Installation: index.md
- Setup:
- Write a Step: setup/write_a_step.md
- Configure Workflow: setup/configure_workflow.md
- CLI: setup/cli.md
- Docker Image: setup/docker.md
- Tutorials:
- tutorials/json_cleaning_workflow.md
- Developers:
- Architecture: developers/architecture.md
- "Workflows Syntax": developers/workflows_syntax.md
- Modules:
- "Module: actions":
- "Module: list": developers/modules/actions/list.md
- "Module: misc": developers/modules/actions/misc.md
- "Module: runner": developers/modules/actions/runner.md
- "Module: validator": developers/modules/actions/validator.md
- "Module: utils":
- "Module: reference_resolver": developers/modules/utils/reference_resolver.md
- "Module: command_arguments": developers/modules/command_arguments.md
- "Module: configuration": developers/modules/configuration.md
- "Module: dispatcher": developers/modules/dispatcher.md
- "Module: exceptions": developers/modules/exceptions.md
- "Module: logger": developers/modules/logger.md
- "Module: workflow": developers/modules/workflow.md
- "Module: main": developers/modules/main.md