-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
76 lines (72 loc) · 1.89 KB
/
mkdocs.yml
File metadata and controls
76 lines (72 loc) · 1.89 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
site_name: Entity Manager
site_description: An entity manager for LLMs
site_url: https://github.com/tomzxcode/entity-manager
repo_name: tomzxcode/entity-manager
repo_url: https://github.com/tomzxcode/entity-manager
edit_uri: edit/main/docs/
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/tomzxcode/entity-manager
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
- Usage: usage.md
- Backends: backends.md
- Architecture: architecture.md
- Specifications:
- Overview: spec/README.md
- Backend Interface: spec/backend-interface.md
- Entity Management: spec/entity-management.md
- Link Management: spec/link-management.md
- Configuration Management: spec/configuration-management.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