-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
77 lines (73 loc) · 1.96 KB
/
mkdocs.yml
File metadata and controls
77 lines (73 loc) · 1.96 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
site_name: Code LoD
site_description: Documentation for Code LoD
site_url: https://github.com/tomzxcode/code-lod
repo_name: tomzx/code-lod
repo_url: https://github.com/tomzxcode/code-lod
edit_uri: edit/main/docs/
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/tomzxcode/code-lod
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
- Getting Started: getting-started.md
- Commands: commands.md
- Architecture: architecture.md
- Specifications:
- Code Parsing: spec/code-parsing.md
- Description Storage: spec/description-storage.md
- Staleness Tracking: spec/staleness-tracking.md
- LLM Integration: spec/llm-integration.md
- Configuration Management: spec/configuration-management.md
- Git Integration: spec/git-integration.md
- Hierarchical Scopes: spec/hierarchical-scopes.md
- CLI Interface: spec/cli-interface.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