forked from jaxleyverse/jaxley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
90 lines (82 loc) · 2.05 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
site_name: Jaxley
site_url: "https://jaxleyverse.github.io/jaxley"
nav:
- Home: index.md
- Tutorials:
- Getting started: tutorial/01_morph_neurons.md
- Run a network simulation: tutorial/02_small_network.md
- Set parameters: tutorial/03_setting_parameters.md
- Accelerate simulations: tutorial/04_jit_and_vmap.md
- Define your own channels: tutorial/05_channel_and_synapse_models.md
- Define groups: tutorial/06_groups.md
- Read and handle SWC files: tutorial/08_importing_morphologies.md
- Training models: tutorial/07_gradient_descent.md
- Installation: install.md
- Contributing:
- Guide: contribute.md
- Code of Conduct: code_of_conduct.md
- API Reference:
- Modules: reference/modules.md
- Simulation: reference/integration.md
- Mechansims: reference/mechanisms.md
- Connecting Cells: reference/connect.md
- Optimization: reference/optimize.md
- Utils: reference/utils.md
- FAQ: faq.md
- Credits: credits.md
repo_name: 'jaxleyverse/jaxley'
repo_url: http://github.com/jaxleyverse/jaxley
theme:
name: 'material'
features:
- content.code.copy
palette:
primary: 'indigo'
accent: 'indigo'
logo: logo_white.png
collapse_navigation: False
extra:
version:
provider: mike
markdown_extensions:
- extra
- smarty
- admonition
- attr_list
- md_in_html
- codehilite:
guess_lang: false
- toc:
permalink: true
toc_depth: 3
- markdown_include.include:
base_path: ../
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
- mike
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: true
heading_level: 3
paths: [..]
watch:
- ../jaxley