-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
93 lines (80 loc) · 2.21 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
site_name: NeSI Training Environment
site_author: NeSI
site_dir: public
site_url: "https://nesi.github.io/training-environment/"
#repository information
repo_name: nesi/training-environment
repo_url: https://github.com/nesi/training-environment
markdown_extensions:
- admonition
- def_list
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.snippets
- pymdownx.pathconverter
nav:
- Overview: 'index.md'
- Tutorials:
- "Adding a new app": "tutorials/adding-new-app.md"
- "Deploying a training environment": "tutorials/deployment-on-nesi.md"
- "JupyterLab app for Intermediate Shell for Bioinformatics": "tutorials/jupyterlab-app-for-intermediate-shell-for-bioinformatics.md"
- Notes for trainers: 'notes-for-trainers.md'
- Known issues: 'known-issues.md'
theme:
name: "material"
logo: images/nesi_logo.png
favicon: images/nesi_logo.png
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
primary: custom
# scheme: default
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: custom
# 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
primary: custom
features:
- navigation.expand
extra_css:
- stylesheets/extra.css