-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
82 lines (77 loc) · 2.14 KB
/
mkdocs.yml
File metadata and controls
82 lines (77 loc) · 2.14 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
73
74
75
76
77
78
79
80
81
82
site_name: Task Stack Documentation
site_description: Documentation for Task Stack, a persistent task-stack tray app
site_url: https://tomzxcode.github.io/task-stack
repo_name: tomzxcode/task-stack
repo_url: https://github.com/tomzxcode/task-stack
edit_uri: edit/main/docs/
theme:
name: material
font:
text: Open Sans
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.highlight
- search.share
- content.action.edit
- content.action.view
- content.code.copy
- content.code.annotate
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: green
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: green
toggle:
icon: material/weather-sunny
name: Switch to light mode
nav:
- Home: index.md
- User Guide:
- Getting Started: user-guide/getting-started.md
- Configuration: user-guide/configuration.md
- Keyboard Shortcuts: user-guide/keyboard-shortcuts.md
- Tray Menu: user-guide/tray-menu.md
- Data Files: user-guide/data-files.md
- Developer Guide:
- Architecture: developer-guide/architecture.md
- Specifications:
- App Coordination: spec/app-coordination.md
- Global Hotkey: spec/global-hotkey.md
- Settings: spec/settings.md
- Stack Window: spec/stack-window.md
- System Tray: spec/system-tray.md
- Task Management: spec/task-management.md
- Tray Icon Generation: spec/tray-icon-generation.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
plugins:
- search
- social
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/tomzxcode/task-stack