-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
61 lines (56 loc) · 1.31 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
site_name: RedCoast
repo_url: https://github.com/tanyuqian/redco
site_url: https://tanyuqian.github.io/redco
nav:
- RedCoast: index.md
- Tutorial:
- Data Parallel Only: tutorial/mnist_dp.md
- Model Parallel: tutorial/mnist_mp.md
- Differential-Private: tutorial/mnist_private.md
- Documentation:
- Trainer: docs/trainer.md
- Predictor: docs/predictor.md
- Deployer: docs/deployer.md
plugins:
- mkdocstrings:
handlers:
python:
paths: redco/
- search
theme:
name: material
font:
text: Ubuntu
code: Ubuntu Mono
favicon: images/redco_logo.png
logo: images/redco_logo.png
features:
- navigation.tabs
- navigation.sections
- navigation.instant
- navigation.top
- navigation.tracking
- toc.follow
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
primary: brown
scheme: black
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
- admonition
- md_in_html
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.snippets
- toc:
permalink: true