-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
131 lines (120 loc) · 3.04 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
site_name: EDS-TeVa
repo_url: https://github.com/aphp/edsteva
edit_uri: edit/main/docs/
repo_name: edsteva
copyright: Copyright © 2022 – Assistance Publique - Hôpitaux de Paris
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/aphp
theme:
language: en
name: material
custom_dir: docs/mkdocs_theme
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
logo: assets/logo/edsteva_logo.svg
favicon: assets/logo/edsteva_logo.svg
features:
- navigation.tracking
- navigation.instant
- navigation.indexes
- navigation.top
- navigation.footer
- content.action.edit
- content.action.view
- content.code.copy
- content.code.annotate
- announce.dismiss
nav:
- index.md
- Components:
- components/loading_data.ipynb
- components/probe.md
- components/model.md
- components/visualization.md
- Code Reference: reference/
- contributing.md
- changelog.md
extra:
version:
provider: mike
default: latest
watch:
- "edsteva"
plugins:
- charts:
use_data_path: false
- search
- markdown-filter
- autorefs
- bibtex:
bib_file: "docs/references.bib"
- gen-files:
scripts:
- docs/generate_reference.py
- docs/generate_development.py
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
show_signature_annotations: true
docstring_section_style: spacy
heading_level: 3
members_order: source
separate_signature: true
show_root_toc_entry: true
- mknotebooks
- literate-nav:
nav_file: SUMMARY.md
- mike
markdown_extensions:
- admonition
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- toc:
toc_depth: 4
- pymdownx.superfences:
custom_fences:
- name: vegalite
class: vegalite
format: !!python/name:mkdocs_charts_plugin.fences.fence_vegalite
- pymdownx.arithmatex:
generic: true
- pymdownx.tabbed:
alternate_style: true
- footnotes
- md_in_html
- attr_list
- pymdownx.details
- tables
extra_javascript:
- https://cdn.jsdelivr.net/npm/vega@5
- https://cdn.jsdelivr.net/npm/vega-lite@5
- https://cdn.jsdelivr.net/npm/vega-embed@6
- assets/stylesheets/extra.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- assets/termynal/termynal.js
extra_css:
- assets/stylesheets/extra.css
- assets/termynal/termynal.css