-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
35 lines (33 loc) · 996 Bytes
/
Copy pathmkdocs.yml
File metadata and controls
35 lines (33 loc) · 996 Bytes
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
# Renders docs/ (the single source of truth) into the disposable HTML site.
# The site builder runs `mkdocs build` (theme: mkdocs-material); the output in
# site/ is generated and never committed.
site_name: abcd
site_description: Agent-Based Configuration for Development — a host-agnostic configuration layer for intent-driven development.
site_url: https://abcdev.app
repo_url: https://github.com/intentdriven/abcd
repo_name: intentdriven/abcd
docs_dir: docs
exclude_docs: |
requirements.txt
.*
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.sections
- navigation.expand
- search.suggest
markdown_extensions:
- admonition
- pymdownx.superfences
- tables