-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
75 lines (73 loc) · 1.85 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
site_name: pytoil
repo_url: https://github.com/FollowTheProcess/pytoil
site_url: https://FollowTheProcess.github.io/pytoil/
site_description: CLI to automate the development workflow.
site_author: Tom Fleet
use_directory_urls: false
strict: true
nav:
- Home: index.md
- Config: config.md
- Commands:
- Show: commands/show.md
- New: commands/new.md
- Checkout: commands/checkout.md
- Remove: commands/remove.md
- Keep: commands/keep.md
- Info: commands/info.md
- Find: commands/find.md
- GH: commands/gh.md
- Pull: commands/pull.md
- Config: commands/config.md
- Bug: commands/bug.md
- Contributing:
- Guide: contributing/contributing.md
- Code of Conduct: contributing/code_of_conduct.md
plugins:
- search
theme:
name: material
font:
text: Roboto
code: SF Mono
feature:
tabs: true
palette:
- scheme: default
primary: blue grey
accent: blue
toggle:
icon: material/lightbulb-outline
name: Dark mode
- scheme: slate
primary: blue grey
accent: blue
toggle:
icon: material/lightbulb-outline
name: Light mode
markdown_extensions:
- codehilite
- pymdownx.highlight:
use_pygments: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- admonition
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.details
- pymdownx.tabbed
- toc:
permalink: true
extra_css:
- "css/termynal.css"
- "css/custom.css"
extra_javascript:
- "https://unpkg.com/mermaid@8.4.6/dist/mermaid.min.js"
- "js/termynal.js"
- "js/custom.js"