-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
99 lines (95 loc) · 2.44 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
site_name: "neuro_py"
repo_name: ryanharvey1/neuro_py
repo_url: https://github.com/ryanharvey1/neuro_py
edit_uri: edit/main/docs/
extra_css:
- stylesheets/extra.css
theme:
name: "material"
palette:
- media: "(prefers-color-scheme: dark)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: light
primary: custom
accent: custom
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: blue
toggle:
icon: material/weather-night
name: Switch to system preference
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- content.tabs.link
- navigation.footer
- navigation.indexes
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.suggest
- toc.follow
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- docs/copy_tutorials.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
docstring_section_style: table
filters: ["!__"] # exclude all members starting with __
- include-markdown: # https://github.com/mondeja/mkdocs-include-markdown-plugin
opening_tag: "{%"
closing_tag: "%}"
rewrite_relative_urls: true
heading_offset: 1
- mkdocs-jupyter:
include: ["*.ipynb"]
include_source: true
ignore_h1_titles: true
execute: false
allow_errors: true
include_requirejs: true
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
cache_safe: true
nav:
- Home: index.md
- API Reference: reference/
- Tutorials:
- Batch Analysis: tutorials/batch_analysis.ipynb
- Explained Variance: tutorials/explained_variance.ipynb
- Bias Correlation: tutorials/bias_correlation.ipynb
- Reactivation: tutorials/reactivation.ipynb
- Spatial Map: tutorials/spatial_map.ipynb
- Attractor Estimation: tutorials/attractor_landscape.ipynb
- Representational Geodynamics: tutorials/pv_trajectory_geodynamics.ipynb