-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
67 lines (62 loc) · 1.46 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
# Project information
site_name: Confound-Corrected CPM
repo_name: 'confound_corrected_cpm'
repo_url: 'https://github.com/wwu-mmll/confound_corrected_cpm'
site_url: 'https://wwu-mmll.github.io/confound_corrected_cpm/'
docs_dir: 'documentation/docs'
#site_dir: 'site'
edit_uri: 'edit/master/documentation/docs'
# Theme configuration
theme:
name: 'material'
language: en
palette:
primary: custom
accent: custom
font:
text: Figtree
logo: assets/img/CCCPM.png
favicon: assets/img/CCCPM.png
features:
- toc.follow
- navigation.tabs
- navigation.sections
# extensions
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
auto_title: true
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path: "../"
- pymdownx.superfences
- codehilite
- admonition
- pymdownx.details
# Site structure
nav:
- Home: 'index.md'
- Installation: 'installation.md'
- Getting Started: 'getting_started.md'
- Examples:
- Simulated Data: 'examples/simulated_data.md'
- HCP: 'examples/human_connectome_project.md'
- API:
- CPM Regression: api/cpm_regression.md
- Edge Selection: api/edge_selection.md
- Models: api/models.md
- Fold: api/fold.md
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
show_source: False
path:
[cpm]