-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
184 lines (161 loc) · 4.69 KB
/
mkdocs.yml
File metadata and controls
184 lines (161 loc) · 4.69 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
site_name: Cardiotensor
site_url: https://josephbrunet.github.io/cardiotensor/
site_author: Joseph Brunet
site_description: >-
Toolkit designed for quantifying and visualising 3D cardiomyocytes orientations in heart images
# Repository
repo_name: cardiotensor
repo_url: https://github.com/JosephBrunet/cardiotensor
edit_uri: edit/main/docs/
# Copyright
copyright: Copyright © 2024 - 2026 - Joseph Brunet
# Page tree
nav:
- Introduction: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- First steps: getting-started/first-steps.md
- Example: getting-started/examples.md
- Getting Technical:
- getting-technical/index.md
- Conventions: getting-technical/conventions.md
- Structure Tensor: getting-technical/structure_tensor.md
- Angles: getting-technical/angles.md
- Fractional Anisotropy: getting-technical/fractional_anisotropy.md
- Tractography: getting-technical/tractography.md
- Advanced:
- advanced/index.md
- Python API: advanced/python-api.md
- Transmural Analysis: advanced/cardio-analysis.md
- Streamlines: advanced/streamlines.md
- SLURM Launcher: advanced/slurm-launcher.md
- Reference:
- reference/index.md
- CLI Commands: reference/cli.md
- Configuration file: reference/configuration.md
- API: reference/api.md
- Contributing: contributing.md
- Citing: citing.md
theme:
name: material
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: astral-dark
toggle:
icon: material/toggle-switch-off
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: astral-light
toggle:
icon: material/toggle-switch
name: Switch to system preferences
logo: assets/logos/heart_logo_dark.png
favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github
features:
- navigation.path
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.sections
- navigation.indexes
- navigation.tracking
- content.code.annotate
- toc.follow
- navigation.footer
- navigation.top
- content.code.copy
- content.tabs.link
# Additional configuration
extra:
status:
new: Recently added
deprecated: Deprecated
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
social:
- icon: fontawesome/brands/github
link: https://github.com/JosephBrunet
- icon: fontawesome/brands/python
link: https://pypi.org/project/cardiotensor/
- icon: fontawesome/brands/x-twitter
link: https://x.com/Joseph__Brunet
extra_css:
- https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css
- stylesheets/extra.css
- stylesheets/mkdocstrings.css
extra_javascript:
- javascripts/extra.js
- https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js
- https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js
- javascripts/math-render.js
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.snippets:
- pymdownx.magiclink:
- attr_list:
- toc:
anchorlink: true
anchorlink_class: "toclink"
permalink: true
- md_in_html:
- pymdownx.inlinehilite:
- pymdownx.superfences:
- markdown.extensions.attr_list:
- pymdownx.keys:
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
plugins:
- search
- autorefs
# - gen-files:
# scripts:
# - docs/gen_ref_pages.py
# - literate-nav:
# nav_file: SUMMARY.md
- section-index
- git-revision-date-localized:
enable_creation_date: true
type: timeago
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
show_submodules: true
allow_inspection: true
show_bases: true
docstring_section_style: list
filters: ["!^_"]
heading_level: 1
inherited_members: true
merge_init_into_class: true
parameter_headings: true
separate_signature: true
show_root_heading: true
show_root_full_path: false
show_signature_annotations: true
show_source: false
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary: true
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn