-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
40 lines (38 loc) · 979 Bytes
/
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
site_name: Paperbush Documentation
repo_url: https://github.com/trag1c/paperbush
repo_name: trag1c/paperbush
copyright: Copyright © 2023 trag1c
nav:
- Home: index.md
- Examples: examples.md
- API Reference: api.md
- Language Reference: dsl.md
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: pink
accent: pink
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: pink
accent: pink
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
markdown_extensions:
- admonition
- footnotes
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true