-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
70 lines (63 loc) · 1.51 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
70
site_name: Cookiecutter PyPackage
repo_url: https://github.com/leodevian/cookiecutter-pypackage
edit_uri: edit/main/docs/
site_description: Cookiecutter template for modern Python packages
site_author: Léo Bernard
copyright: Copyright © 2024 Léo Bernard
nav:
- Home:
- Overview: index.md
- Changelog: changelog.md
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
theme:
name: material
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.suggest
- toc.follow
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
site_dir: site
watch:
- mkdocs.yaml
- README.md
- CHANGELOG.md
- CONTRIBUTING.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
use_pygments: true
pygments_lang_class: true
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search