-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yaml
79 lines (76 loc) · 2.02 KB
/
mkdocs.yaml
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
site_name: WANNA ML
repo_url: https://github.com/avast/wanna-ml/
repo_name: avast/wanna-ml
edit_uri: edit/master/docs/
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: indigo
accent: indigo
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
# - navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- toc.follow
- toc.integrate
highlightjs: true
hljs_languages:
- yaml
- python
- bash
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: indigo
accent: indigo
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- toc.follow
- toc.integrate
highlightjs: true
hljs_languages:
- yaml
- python
- bash
nav:
- Overview: 'index.md'
- Installation: 'installation.md'
- Troubleshooting: 'troubleshooting.md'
- Tutorial:
- 'Get Started': 'tutorial/index.md'
- 'WANNA Project': 'tutorial/project.md'
- 'WANNA Profile': 'tutorial/profile.md'
- 'WANNA Docker': 'tutorial/docker.md'
- 'WANNA Tensorboard': 'tutorial/tensorboard.md'
- 'WANNA Notebook': 'tutorial/notebook.md'
- 'WANNA Managed Notebook': 'tutorial/managed-notebook.md'
- 'WANNA Job': 'tutorial/job.md'
- 'WANNA Pipeline': 'tutorial/pipeline.md'
- CLI Reference: 'cli/commands.md'
plugins:
- search
markdown_extensions:
- mkdocs-typer
- mkdocs-click
- admonition
- codehilite
- mkautodoc
- toc:
permalink: "#"