-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
148 lines (139 loc) · 3.79 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
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
# Project Information
site_name: Nima's Documentation
site_url: https://neurogranberg.github.io/Nima_Documentation/
site_description: Central Documentation of my project as RA in NG group, KI.
site_author: "Nima Chamyani"
repo_url: https://github.com/NeuroGranberg/Nima_Documentation
repo_name: Nima_Documentation
edit_uri: edit/main/docs/
copyright: Copyright © 2024 - Department of Clinical Neuroscience Neuroradiology, Karolinska Institutet, Sweden
theme:
name: material
language: en
logo: assets/NG_GROUP.png
favicon: assets/NG-T.png
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: orange
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: amber
accent: amber
toggle:
icon: material/weather-night
name: Switch to system preference
features:
- search.suggest
- search.highlight
- navigation.tabs
- navigation.tabs.sticky
- toc.integrate
- navigation.footer
- content.action.edit
- content.tooltips
- content.code.copy
- content.code.select
- content.code.annotate
- announce.dismiss
- content.action.view
# - content.tabs.link
# - header.autohide
- navigation.expand
- navigation.indexes
# - navigation.instant
# - navigation.instant.prefetch
# - navigation.instant.progress
# - navigation.prune
- navigation.sections
- navigation.top
- navigation.tracking
- search.share
- toc.follow
# Navigation Structure
nav:
- Home: index.md
- Workspace:
- workspace/index.md
- workspace/infrastructure_workflow.md
- workspace/set_up_environment.md
- workspace/BIDSification.md
- workspace/comperhensive_tools.md
- workspace/conversion_tools.md
- workspace/containers.md
- workspace/BIDS_datasets.md
- workspace/BIDS_analysis.md
- workspace/visualization.md
- workspace/copying_large_data.md
- workspace/running_commands_in_background.md
- workspace/parallelization.md
- workspace/download_large_data.md
- workspace/fixing_corrupted_archives.md
- iAID:
- iAID/data.md
- iAID/BIDSification.md
- NeuroG Container:
- NeuroG Container/motivation.md
- NeuroG Container/build.md
- NeuroG Container/how_to_use.md
- Dicom Extractor:
- Dicom Extractor/dicom_metadata_extraction_tool.md
- Dicom Extractor/Usage.md
- Dicom Reorganizer:
- Dicom Reorganizer/index.md
- Dicom Reorganizer/python_package.md
- Orthanc Server:
- Orthanc Server/build.md
- Orthanc Server/usage.md
# - Blog:
# - blog/index.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/NeuroGranberg/Nima_Documentation
name: Nima_Documentation
plugins:
- blog:
enabled: true
blog_dir: blog
authors: true
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
markdown_extensions:
- pymdownx.keys
- admonition
- abbr
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
- pymdownx.arithmatex:
generic: true
- toc:
toc_depth: 3
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- javascripts/custom.js
extra_css:
- stylesheets/extra.css
# Build Settings
use_directory_urls: true