-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
92 lines (85 loc) · 2.48 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
site_name: StarDist
site_url: https://stardist.net/
site_author: StarDist docs authors
copyright: Copyright © 2020 – 2024 StarDist docs authors.
site_description: StarDist is a deep learning based nuclei/cell detection and segmentation method for 2D and 3D microscopy images that is suited for densely packed objects that can be well approximated by star-convex polygons/polyhedra.
repo_url: https://github.com/stardist/stardist
repo_name: stardist/stardist
edit_uri: https://github.com/stardist/stardist-docs/blob/main/docs/
nav:
- Overview: index.md
- FAQ: faq.md
# - 'Forum': 'https://forum.image.sc/tag/stardist'
plugins:
- search
- redirects:
redirect_maps:
'docs/faq.html': 'faq.md'
- git-revision-date-localized:
enable_creation_date: true
- git-committers:
repository: stardist/stardist-docs
branch: main
exclude:
- index.md
theme:
name: material
custom_dir: overrides
logo: assets/logo.png
font: false
# favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github
features:
- toc.follow
- toc.integrate
- search.highlight
- navigation.tabs
# - navigation.footer
# - navigation.top
- navigation.indexes
- navigation.sections
- navigation.tracking
- content.action.edit
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: "indigo"
accent: "indigo"
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: "indigo"
accent: "indigo"
toggle:
icon: material/brightness-4
name: Switch to light mode
extra:
analytics:
provider: plausible
domain: stardist.net
social:
- icon: fontawesome/brands/github
link: https://github.com/stardist
- icon: fontawesome/brands/python
link: https://pypi.org/project/stardist/
markdown_extensions:
- toc:
# toc_depth: 3
# permalink: "★"
# permalink: ⚓︎
permalink: "#"
# note: always must use "python -m mkdocs" instead of "mkdocs" from the command line
# cf. https://github.com/mkdocs/mkdocs/issues/1442
slugify: !!python/name:local.slugify
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences