forked from osl-incubator/scicookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yaml
69 lines (63 loc) · 1.62 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
site_name: SciCookie
site_description: Documentation for SciCookie
site_author: OpenScienceLabs Team
site_url: https://osl-incubator.github.io/scicookie
site_dir: ./build/
docs_dir: ./docs/
repo_url: https://github.com/osl-incubator/scicookie
repo_name: osl-incubator/scicookie
edit_uri: ./edit/main/docs
nav:
- Home: "index.md"
- Installation: "install.md"
- Guide: "guide.md"
- Contributing: "contributing.md"
- Changelog: "changelog.md"
- Code of Conduct: "conduct.md"
theme:
name: material
features:
- navigation.sections
palette:
- scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
font:
text: Lato
icon:
repo: fontawesome/brands/github
logo: images/logo.png
# strict: true
plugins:
- search
- mkdocstrings
- autorefs # Cross-links to headings
- include_exclude_files:
exclude:
- "_overrides"
markdown_extensions:
- callouts
- pymdownx.arithmatex
- pymdownx.magiclink
- pymdownx.details # Allowing hidden expandable regions denoted by ???
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences # Seems to enable syntax highlighting when used with the Material theme.
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
check_paths: true
- toc:
permalink: "¤" # Adds a clickable permalink to each section heading
toc_depth: 4