-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
85 lines (78 loc) · 2.19 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
site_name: useq-schema
site_url: https://pymmcore-plus.github.io/useq-schema
site_description: Implementation agnostic schema for microscopy experiments
# strict: true
repo_name: pymmcore-plus/useq-schema
repo_url: https://github.com/pymmcore-plus/useq-schema
edit_uri: ""
# use_directory_urls: false
watch:
- src
nav:
- pymmcore-plus: /pymmcore-plus/
- useq-schema:
- index.md
- Schema:
- schema/sequence.md
- schema/event.md
- schema/axes.md
- schema/hardware_autofocus.md
- api.md
- pymmcore-widgets: /pymmcore-widgets/
- napari-micromanager: /napari-micromanager/
theme:
name: "material"
features:
- content.tabs.link
- navigation.tabs
icon:
logo: fontawesome/solid/microscope
repo: fontawesome/brands/github
favicon: docs/images/favicon.ico
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: dark blue
accent: dark blue
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: light green
toggle:
icon: material/lightbulb
name: "Switch to light mode"
markdown_extensions:
- tables
- toc:
permalink: "#"
- admonition
- pymdownx.highlight
- pymdownx.extra
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
options:
heading_level: 3 # default is 2
show_root_heading: true # default is false
show_root_full_path: false # default is true
docstring_style: 'numpy'
show_signature: false # default is true
annotations_path: 'source' # default is 'brief'
show_bases: false # default is true
show_source: false # default is true
extra_css:
- stylesheets/extra.css