forked from copier-org/copier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
56 lines (51 loc) · 1.4 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
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
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
- Contributing: "contributing.md"
- Changelog: "changelog.md"
theme:
name: "material"
extra_css:
- css/mkdocstrings.css
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.emoji
- pymdownx.magiclink
- toc:
permalink: true
plugins:
- autorefs
- search
- mermaid2:
arguments:
flowchart:
curve: basis
- mkdocstrings:
watch:
- copier