-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
77 lines (72 loc) · 1.85 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
site_name: meds-torch
repo_url: https://github.com/oufattole/meds-torch
site_description: Documentation for the MEDS torch package
site_author: Nassim Oufattole
nav:
- Home: index.md
- "Inductive Experiments": inductive_experiments.md
- "Terminology": terminology.md
- "Input Encoding Methods": input_encoding_methods.md
- API Reference: reference/api/
- Config Reference: reference/config/
- Issues: https://github.com/oufattole/meds-torch/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
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
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