- Add new documentation pages to header navigation - Configure collections for tools and development sections - Set default layouts for pages, tools, and development collections - Improve documentation site organization and navigation
58 lines
1.0 KiB
YAML
58 lines
1.0 KiB
YAML
title: Model Context Protocol (MCP)
|
|
description: A bridge between Home Assistant and Language Learning Models
|
|
theme: jekyll-theme-minimal
|
|
markdown: kramdown
|
|
plugins:
|
|
- jekyll-relative-links
|
|
- jekyll-seo-tag
|
|
|
|
# Enable relative links
|
|
relative_links:
|
|
enabled: true
|
|
collections: true
|
|
|
|
# Navigation structure
|
|
header_pages:
|
|
- index.md
|
|
- getting-started.md
|
|
- api.md
|
|
- usage.md
|
|
- tools/tools.md
|
|
- development/development.md
|
|
- troubleshooting.md
|
|
- contributing.md
|
|
- roadmap.md
|
|
|
|
# Collections
|
|
collections:
|
|
tools:
|
|
output: true
|
|
permalink: /:collection/:name
|
|
development:
|
|
output: true
|
|
permalink: /:collection/:name
|
|
|
|
# Default layouts
|
|
defaults:
|
|
- scope:
|
|
path: ""
|
|
type: "pages"
|
|
values:
|
|
layout: "default"
|
|
- scope:
|
|
path: "tools"
|
|
type: "tools"
|
|
values:
|
|
layout: "default"
|
|
- scope:
|
|
path: "development"
|
|
type: "development"
|
|
values:
|
|
layout: "default"
|
|
|
|
# Exclude files from processing
|
|
exclude:
|
|
- Gemfile
|
|
- Gemfile.lock
|
|
- node_modules
|
|
- vendor |