-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
60 lines (57 loc) · 1.65 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
# mkdocs.yml
site_name: Automate Meta WIP Category
site_description: Documentation for neurodivergent-friendly project automation system
theme:
name: material
palette:
- scheme: default
primary: deep purple
accent: purple
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.expand # Shows the full navigation tree
- navigation.indexes # Allows index page for sections
- search.highlight
- search.suggest
nav:
- Home: index.md
- User Guide:
- Getting Started: user_guide/getting_started.md
- Project Structure: user_guide/project_structure.md
- Frontmatter Fields: user_guide/frontmatter_guide.md
- Recurrence Handling: user_guide/recurrence_guide.md
- README Format: user_guide/readme_format.md
- Priority System:
- Overview: priority/overview.md
- Factor Weights: priority/weights.md
- Scoring Logic: priority/scoring.md
- Neurodivergent Considerations: priority/neurodivergent_considerations.md
- Development:
- Setup: development/setup.md
- Contributing: development/contributing.md
- Testing: development/testing.md
- API Reference:
- Project Sorter: api/project_sorter.md
- README Parser: api/readme_parser.md
- File Sync: api/file_sync.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed
- tables
- footnotes
- attr_list
plugins:
- search
- tags