-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
132 lines (120 loc) · 3.53 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
site_name: surforama
site_url: https://github.com/cellcanvas/surforama
site_author: Alister Burt and Kevin Yamauchi
site_description: >-
Documentation for surforama, a tool for using surfaces
to explore volumetric data in napari.
# Repository
repo_name: cellcanvas/surforama
repo_url: https://github.com/cellcanvas/surforama
# Copyright
copyright: Copyright © 2024 CellCanvas team
watch:
- src/surforama
theme:
icon:
logo: material/home-circle
name: material
palette:
# Palette toggle for light mode
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: blue grey
accent: blue grey
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
features:
#- navigation.instant
#- navigation.tabs
#- navigation.top
#- navigation.tracking
- search.highlight
- search.suggest
# - toc.follow
# - content.code.annotate
# - navigation.sections
- content.tabs.link
- content.code.copy
markdown_extensions:
- admonition
- tables
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- md_in_html
- pymdownx.arithmatex:
generic: true
extra:
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
nav:
- 'Overview': index.md
- 'Getting started': getting_started.md
- 'Installation': installation.md
- 'CZ cryoET Data Portal': surforama_for_data_portal.md
- 'Contributing': contributing.md
plugins:
- search
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
selection:
docstring_style: numpy
filters: [ "!^_" ]
rendering:
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: true
show_object_full_path: false
# show_root_members_full_path: false
# show_category_heading: false
show_if_no_docstring: false
# show_signature: true
show_signature_annotations: true
show_source: true
# show_bases: true
# group_by_category: true
# heading_level: 2
members_order: source # alphabetical/source
## experimental
docstring_section_style: spacy # or table/list/spacy
- mkdocs-video:
is_video: True
video_autoplay: True
video_loop: True
# - gallery:
# conf_script: docs/gallery_conf.py
# examples_dirs: [docs/examples]
# gallery_dirs: [docs/generated/gallery]
# filename_pattern: /*.py # which scripts will be executed for the docs
# ignore_pattern: /__init__.py # ignore these example files completely
# run_stale_examples: True
extra_css:
- stylesheets/extra.css