-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yml
47 lines (41 loc) · 984 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
41
42
43
44
45
46
47
site_name: Mailer Documentation
site_description: Dead-simple mailer micro-service for static websites
site_author: Romain Clement
site_url: https://rclement.github.io/mailer/
repo_name: rclement/mailer
repo_url: https://github.com/rclement/mailer
edit_uri: edit/master/docs/
docs_dir: docs
site_dir: site
extra:
version: 0.10.3
nav:
- Home: 'index.md'
- 'usage.md'
- 'deployment.md'
- 'contributing.md'
- 'changelog.md'
theme:
name: material
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
- search
markdown_extensions:
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences