-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
65 lines (62 loc) · 1.46 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
site_name: rich-codex
repo_name: ewels/rich-codex
repo_url: https://github.com/ewels/rich-codex
site_url: https://ewels.github.io/rich-codex/
edit_uri: edit/main/docs/
theme:
name: material
icon:
logo: octicons/book-16
repo: fontawesome/brands/github
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
font:
text: Noto Sans
features:
- navigation.instant
nav:
- Home: index.md
- Usage:
- usage/github_action.md
- usage/cli.md
- usage/docker_image.md
- Inputs:
- inputs/markdown.md
- inputs/direct_inputs.md
- inputs/config_file.md
- Configuration:
- config/overview.md
- config/time_limits.md
- config/tweaks.md
- config/command_setup.md
- config/width.md
- config/colours.md
- config/cleaning.md
- config/ignoring_changes.md
- safety.md
- troubleshooting.md
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
plugins:
- social