-
-
Notifications
You must be signed in to change notification settings - Fork 181
/
mkdocs.yml
77 lines (72 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
site_name: copier
site_description: Library and command-line utility for rendering projects templates.
site_url: https://copier.readthedocs.io/
repo_url: https://github.com/copier-org/copier
repo_name: copier-org/copier
watch: [copier]
nav:
- Overview: "index.md"
- Creating a template: "creating.md"
- Configuring a template: "configuring.md"
- Generating a project: "generating.md"
- Updating a project: "updating.md"
- Reference:
- cli.py: "reference/cli.md"
- errors.py: "reference/errors.md"
- main.py: "reference/main.md"
- subproject.py: "reference/subproject.md"
- template.py: "reference/template.md"
- tools.py: "reference/tools.md"
- types.py: "reference/types.md"
- user_data.py: "reference/user_data.md"
- vcs.py: "reference/vcs.md"
- Comparisons: comparisons.md
- Frequently Asked Questions: faq.md
- Contributing: "contributing.md"
- Changelog: "changelog.md"
theme:
name: material
features:
- content.code.annotate
- navigation.top
- navigation.tracking
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep orange
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: amber
accent: orange
toggle:
icon: material/weather-night
name: Switch to system preference
extra_css:
- css/mkdocstrings.css
markdown_extensions:
- admonition
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji
- pymdownx.magiclink
- toc:
permalink: true
- footnotes
plugins:
- autorefs
- search
- markdown-exec
- mkdocstrings