-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
68 lines (60 loc) · 1.77 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
---
# reference: https://www.mkdocs.org/
site_url: "https://docs.while-true-do.io"
site_name: "docs.while-true-do.io"
site_description: "while-true-do.io Documentation"
site_author: "while-true-do.io"
copyright: "© 2022 - while-true-do.io"
repo_url: "https://github.com/whiletruedoio/.github/"
repo_name: "GitHub"
edit_uri: "edit/main/docs/"
extra_css:
- "stylesheets/extra.css"
theme:
logo: "assets/logo/whiletruedoio_logo_light_round.png"
favicon: "assets/logo/favicon.png"
name: "material"
highlightjs: true
titles_only: true
features:
- "navigation.instant"
- "navigation.tracking"
- "navigation.top"
palette:
- scheme: "default"
primary: "teal"
toggle:
icon: "material/toggle-switch-variant"
name: "Switch to dark mode"
- scheme: "slate"
primary: "teal"
toggle:
icon: "material/toggle-switch-variant-off"
name: "Switch to light mode"
markdown_extensions:
- "meta"
- "attr_list"
- "pymdownx.betterem"
- "pymdownx.emoji"
plugins:
- "search"
- "pdf-export"
extra:
generator: false
social:
- icon: "fontawesome/brands/twitter"
link: "https://twitter.com/whiletruedoio"
name: "while-true-do.io on Twitter"
- icon: "fontawesome/brands/github"
link: "https://github.com/whiletruedoio"
name: "while-true-do.io on GitHub"
- icon: "fontawesome/brands/linkedin"
link: "https://www.linkedin.com/company/whiletruedoio"
name: "while-true-do.io on LinkedIn"
- icon: "fontawesome/brands/docker"
link: "https://hub.docker.com/u/whiletruedoio"
name: "while-true-do.io on Docker Hub"
- icon: "fontawesome/solid/comments"
link: "https://matrix.to/#/#whiletruedoio-community:matrix.org"
name: "while-true-do.io on Matrix"
...