-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
64 lines (59 loc) · 1.74 KB
/
mkdocs.yml
File metadata and controls
64 lines (59 loc) · 1.74 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
site_name: Complexitty
docs_dir: docs/source/
repo_url: https://github.com/davep/complexitty
nav:
- "Getting Started": index.md
- "Configuration": configuration.md
- "License": license.md
- "Change Log": changelog.md
markdown_extensions:
- admonition
- pymdownx.snippets
- markdown.extensions.attr_list
- pymdownx.superfences:
custom_fences:
- name: textual
class: textual
format: !!python/name:textual._doc.format_svg
- name: bash
class: bash
validator: !!python/name:markdown_exec.validator
format: !!python/name:markdown_exec.formatter
theme:
name: material
icon:
logo: fontawesome/solid/magnifying-glass-plus
features:
- content.code.copy
- navigation.top
- navigation.footer
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/davep
- icon: fontawesome/brands/python
link: https://pypi.org/user/davepearson/
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@davep
- icon: fontawesome/brands/bluesky
link: https://bsky.app/profile/davep.org
- icon: fontawesome/brands/threads
link: https://www.threads.net/@davepdotorg
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/@DavePearson
- icon: fontawesome/brands/steam
link: https://steamcommunity.com/id/davepdotorg
### mkdocs.yml ends here