-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
71 lines (65 loc) · 1.54 KB
/
mkdocs.yml
File metadata and controls
71 lines (65 loc) · 1.54 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
site_name: RefMD Documentation
site_description: Official guide for using, operating, and extending RefMD.
repo_url: https://github.com/refmdio/refmd
repo_name: refmdio/refmd
edit_uri: edit/main/docs/
nav:
- Overview: index.md
- Quick Start: quick-start.md
- Feature Overview: feature-overview.md
- System Architecture: architecture.md
- Integrations:
- MCP Server: mcp-server.md
- Plugin Platform:
- Overview: plugins/index.md
- Manifest Specification: plugins/manifest.md
- Development Guide: plugins/development.md
- Plugin API Reference: plugins/api.md
theme:
name: material
language: en
features:
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.top
- toc.integrate
- content.code.copy
- search.suggest
- search.highlight
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
font:
text: Inter
code: "JetBrains Mono"
plugins:
- search
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/refmdio/refmdio
name: RefMD on GitHub
extra_css: []
extra_javascript: []