-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
85 lines (80 loc) · 2.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
site_name: meds-tab
repo_url: https://github.com/mmcdermott/MEDS_Tabular_AutoML
site_description: Documentation for the meds-tab package
site_author: Nassim Oufattole
nav:
- "Home": index.md
- "Usage Guide": usage_guide.md
- "MIMICIV Tutorial": tutorial.md
- "Terminology": terminology.md
- "Benchmark Results": prediction.md
- "Computational Profiling": profiling.md
- "API Reference": reference/api/
- "Config Reference": reference/config/
- "Issues": https://github.com/mmcdermott/MEDS_Tabular_AutoML/issues
theme:
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
custom_dir: docs/overrides
logo: assets/light_logo.png
name: material
locale: en
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
font:
text: Roboto
code: Roboto Mono
favicon: assets/light_logo.png
markdown_extensions:
- smarty
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- admonition
- pymdownx.details
- attr_list
extra_javascript:
- javascripts/mathjax.js
- javascripts/directory-tree.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/directory-tree.css
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings
- git-authors
- git-revision-date-localized