-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
140 lines (132 loc) · 3.59 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
site_name: runnable
site_description: "Pipelines made easy"
strict: false
repo_url: https://github.com/AstraZeneca/runnable
# TODO: Set up versioning
docs_dir: "docs"
theme:
logo: assets/sport.png
favicon: assets/sport.png
name: material
font:
code: Roboto Mono
text: Roboto
shortcuts:
help: 191 # ?
next: 78 # n
previous: 80 # p
search: 83 # s
palette:
- scheme: default
primary: amber
accent: red
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: slate
primary: amber
accent: red
toggle:
icon: material/lightbulb
name: Switch to light mode
features:
- content.code.copy
- content.code.annotate
- content.tabs.link
- header.autohide
- navigation.top
- toc.follow
- toc.integrate
- search.suggest
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.footer
# - navigation.indexes
# Extensions
markdown_extensions:
- mkdocs-click
- admonition
- def_list
- attr_list
- md_in_html
- pymdownx.details
- footnotes
- tables
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
base_path: "."
# dedent_subsections: true
- pymdownx.inlinehilite
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
separator: "_"
toc_depth: 2
plugins:
- search
- section-index
- mkdocstrings:
enabled: !ENV [ENABLE_MKDOCSTRINGS, true]
default_handler: python
handlers:
python:
options:
show_source: false
docstring_section_style: list
allow_inspection: false
show_signature_annotations: true
separate_signature: true
# extra_javascript:
# - https://unpkg.com/[email protected]/dist/mermaid.min.js
extra_css:
- css/extra.css
nav:
- "runnable":
- "Introduction": "index.md"
- "Usage": "usage.md"
- "Why runnable?": "why-runnable.md"
- "Define pipeline":
- "concepts/index.md"
- "Tasks": concepts/task.md
- "Pipeline": "concepts/pipeline.md"
- "Parameters": "concepts/parameters.md"
- "Catalog": "concepts/catalog.md"
- "Secrets": "concepts/secrets.md"
- "Parallel": "concepts/parallel.md"
- "Map": "concepts/map.md"
- "Reproducibility": "concepts/run-log.md"
- "Run pipeline":
- "configurations/overview.md"
- "Executor":
- "local": "configurations/executors/local.md"
- "mocked": "configurations/executors/mocked.md"
- "retry": "configurations/executors/mocked.md"
- "local-container": "configurations/executors/local-container.md"
- "argo workflows": "configurations/executors/argo.md"
- "container environments": "configurations/executors/container-environments.md"
- "Run log": "configurations/run-log.md"
- "Catalog": "configurations/catalog.md"
- "Secrets": "configurations/secrets.md"
- "Reference": "reference.md"