-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
62 lines (55 loc) · 1.63 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
site_name: PyTemplate
site_description: A Python archetype documentation to help developers to start developing a coding project.
repo_url: https://github.com/charlstown/py-template.git
# Configuration
# Theme
theme:
name: material
logo: assets/logo.png
favicon: assets/favicon.svg
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- navigation.top
language: en
palette:
# Palette toggle for light mode
- scheme: default
primary: blue grey
accent: blueblue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: blue grey
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
# Sorting menu pages
nav:
- Home: 'index.md'
- User Guide:
- Getting Started: 'user-guide/getting-started.md'
- Set Up: 'user-guide/set-up.md'
- Usage: 'user-guide/usage.md'
- Help wanted: 'user-guide/help.md'
- Dev Guide:
- Contribute: 'dev-guide/contribute.md'
- CI CD: 'dev-guide/ci-cd.md'
- About:
- License: 'about/license.md'
- External links: 'about/external-links.md'
- Changelog: 'about/changelog.md'
# Extensions
markdown_extensions:
- admonition # Block elements
- pymdownx.details # Collapsible call-outs
- pymdownx.superfences # Nested elements
- pymdownx.mark # Hihlighting text
- attr_list # To add buttons
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg