-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
218 lines (201 loc) · 6.34 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
site_name: ""
site_url: https://careamics.github.io/
repo_url: https://github.com/CAREamics/careamics
repo_name: CAREamics
#edit_uri: https://github.com/CAREamics/careamics.github.io/blob/main/docs/
edit_uri: "" # disable the edit button
nav:
- Home: index.md
- Installation: installation.md
- Current State: current_state.md
- Guides:
- Guides: guides/index.md
- CAREamist API:
- guides/careamist_api/index.md
- Configuration:
- guides/careamist_api/configuration/index.md
- guides/careamist_api/configuration/convenience_functions.md
- guides/careamist_api/configuration/save_load.md
- guides/careamist_api/configuration/build_configuration.md
- guides/careamist_api/configuration/full_spec.md
- guides/careamist_api/configuration/algorithm_requirements.md
- guides/careamist_api/configuration/advanced_configuration.md
- guides/careamist_api/configuration/understanding_errors.md
- Using CAREamics:
- guides/careamist_api/usage/index.md
- guides/careamist_api/usage/careamist.md
- guides/careamist_api/usage/training.md
- guides/careamist_api/usage/datasets.md
- guides/careamist_api/usage/prediction.md
- guides/careamist_api/usage/model_export.md
- FAQ: guides/careamist_api/faq.md
- napari plugins:
- guides/napari_plugin/index.md
- Tutorials:
- guides/turotials/index.md
- Lightning API:
- guides/lightning_api/index.md
- guides/lightning_api/lightning_module.md
- guides/lightning_api/train_data_module.md
- guides/lightning_api/prediction.md
- Command-line interface:
- guides/cli/index.md
- Developer resources:
- Developer resources: guides/dev_resources/index.md
- guides/dev_resources/contribute.md
- guides/dev_resources/website.md
- guides/dev_resources/docstring.md
- Applications:
- applications/index.md
- Noise2Void: applications/n2v/
- N2V2: applications/n2v2/
- structN2V: applications/structn2v/
- Noise2Noise: applications/n2n/
- CARE: applications/care/
- Lightning API: applications/lightning_api/
- Algorithms:
- algorithms/index.md
- Noise2Void: algorithms/n2v/
- N2V2: algorithms/n2v2/
- structN2V: algorithms/structN2V/
- Code Reference: reference/
theme:
name: material
logo: assets/banner_careamics_large.png
favicon: assets/icon_careamics.png
custom_dir: docs/overrides
font: false
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: indigo
toggle:
icon: octicons/moon-24
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: amber
toggle:
icon: octicons/sun-24
name: Switch to light mode
features:
#- navigation.tabs
- content.code.copy
- content.code.annotate
- content.action.edit
# - navigation.footer # next/previous links in footer
- navigation.content_next # next/previous links bottom of content
# - navigation.instant # hard to use with javascript on page load
# - navigation.tracking
- navigation.indexes
- search.highlight
- search.share
- search.suggest
- navigation.icons
- content.tabs.link
markdown_extensions:
#- pymdownx.extra # markdown in html (includes commented extensions below)
- attr_list
- def_list
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.tilde
- pymdownx.snippets:
base_path:
- docs/overrides/.icons/octicons # to use emojis in the cards
- temp/ # for the code snippets in the guides
# - pymdownx.progressbar:
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
- toc:
permalink: "#"
plugins:
- search
- tags
# jupyter notebooks: https://pypi.org/project/mkdocs-jupyter/
- mkdocs-jupyter:
no_input: False
remove_tag_config:
# https://nbconvert.readthedocs.io/en/latest/removing_cells.html
remove_all_outputs_tags:
- remove_output
remove_input_tags:
- hide_code
# Generate code documentation from other modules
# generate .md for a python modules
- gen-files:
scripts:
- scripts/gen_ref_pages.py
- scripts/gen_jupyter_nav.py
# allow navigation from a file, used together with gen-files
- literate-nav:
nav_file: SUMMARY.md
# generate docstrings
- section-index
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_style: numpy
# minify files
- minify:
minify_html: true
minify_js: true
minify_css: true
cache_safe: true
htmlmin_opts:
remove_comments: true
css_files:
# - stylesheets/extra.css
# - stylesheets/termynal.css
js_files:
# - javascripts/extra.js
# - javascripts/termynal.js
# check spelling in all files, including code documentation
- spellcheck:
backends: # the backends you want to use
- codespell: # or nested configs
dictionaries: [clear, rare]
watch:
- docs
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/CAREamics/careamics
version:
provider: mike
extra_javascript:
- javascripts/termynal.js
- javascripts/extra.js
- javascripts/katex.js
- https://unpkg.com/katex@0/dist/katex.min.js
- https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
extra_css:
- stylesheets/extra.css
- stylesheets/grid_menu.css
- stylesheets/termynal.css
- https://unpkg.com/katex@0/dist/katex.min.css