-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
72 lines (62 loc) · 1.61 KB
/
mkdocs.yml
File metadata and controls
72 lines (62 loc) · 1.61 KB
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
# Title of the site
site_name: Pypate
# Description of the site
site_description: Docs for the python-package-template
# URL for pages editing
repo_url: https://github.com/deknowny/python-package-template
# Branch chosen when routing to repository
remote_branch: gh-pages
# Site's content
nav:
- Home: index.md
- Step-by-step User Guide:
- Introduction: user-guide/index.md
- First init: user-guide/first-init.md
- About Makefile: user-guide/makefile.md
- About Poetry: user-guide/poetry.md
- About environments and virtaulenv: user-guide/environments.md
- Formatters: user-guide/formatters.md
- Linters: user-guide/linters.md
- Reference:
- Introduction: reference/index.md
- Manage dependencies: reference/manage-dependencies.md
- About vendor dependencies: reference/vendor.md
# Theme preference. Use `mkdocs-material`
theme:
name: material
palette:
- scheme: default
primary: brown
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: amber
toggle:
icon: material/lightbulb
name: Switch to light mode
font:
text: Ubuntu
code: Monaco
features:
- header.autohide
extra_css:
- stylesheets/slate.css
# Material extensions
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.keys
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
extra:
version:
provider: mike
default: latest