-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
71 lines (65 loc) · 1.78 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
site_name: unraphael
site_url: https://unraphaul.readthedocs.io
repo_url: https://github.com/DecodingRaphael/unraphael
repo_name: GitHub
nav:
- Home: index.md
- background.md
- pipeline.md
- Image Processing Steps:
- steps/preprocessing.md
- steps/segmentation.md
- steps/alignment.md
- steps/clustering.md
- steps/analysis.md
- Tutorials:
- tutorials/image_processing.md
- tutorials/image_clustering.md
- CONTRIBUTING.md
- cite.md
- Code of Conduct: CODE_OF_CONDUCT.md
- 🔗 Source code: https://github.com/DecodingRaphael/unraphael
- 🔗 Issues: https://github.com/DecodingRaphael/unraphael/issues
- credits.md
theme:
name: material
#color_mode: dark
palette:
scheme: default
primary: deep purple
accent: purple
markdown_extensions:
- admonition
- attr_list
- markdown_include.include:
base_path: docs
- pymdownx.extra
- pymdownx.arithmatex:
generic: true
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- mkdocstrings:
# https://mkdocstrings.github.io/usage/
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://docs.scipy.org/doc/scipy/objects.inv
- https://pandas.pydata.org/docs/objects.inv
options:
docstring_style: numpy
docstring_options:
ignore_init_summary: yes
show_submodules: no
show_source: true
docstring_section_style: list
members_order: alphabetical
show_category_heading: no
merge_init_into_class: yes
watch:
- src/unraphael
- docs/