-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
88 lines (78 loc) · 2.43 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
site_name: "brainformr documentation"
nav:
- 'index.md'
- Code reference information:
- data + dataloader: data.md
- model attention matrix format: model.md
- post-hoc analysis: analysis.md
#- Generating embeddings:
#- Clustering embeddings:
- Other applications:
- Training on Zhuang lab data:
- zhuang_abc.md
- API Reference: reference/
repo_url: https://github.com/alexj-lee/brainformr
plugins:
- search
#- with-pdf
- section-index
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths: [brainformr]
options:
docstring_style: numpy
rendering:
show_root_heading: true
show_root_full_path: true
show_signature_annotations: true
show_if_no_docstring: true
members_order: source
selection:
inherited_members: true
- gen-files:
scripts:
- docs_scripts/gen_ref_pages.py
config:
skip_paths:
- brainformr/brainformr/__init__.py
- brainformr/brainformr/data/loader_polars.py
exclude_docs:
_version.py
theme:
name: material
#logo: "_static/favicon.png"
features:
- navigation.sections # Sections are included in the navigation on the left.
- toc.integrate # Table of contents is integrated on the left; does not appear separately on the right.
- header.autohide # header disappears as you scroll
- content.code.copy
palette:
# Light mode / dark mode
# We deliberately don't automatically use `media` to check a user's preferences. We default to light mode as
# (a) it looks more professional, and (b) is more obvious about the fact that it offers a (dark mode) toggle.
- scheme: default
primary: white
accent: teal
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: teal
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
repo: fontawesome/brands/github # GitHub logo in top right
logo: fontawesome/solid/brain # Brain logo in top left
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences