-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path_config.yml
More file actions
80 lines (71 loc) · 1.32 KB
/
Copy path_config.yml
File metadata and controls
80 lines (71 loc) · 1.32 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
78
79
80
# GitHub Pages configuration
title: "Universal Swagger → MCP Server Converter"
description: "Stop wrestling with massive API docs in your AI assistant's context window. Start having intelligent conversations about any API."
url: "https://salacoste.github.io"
baseurl: "/openapi-mcp-swagger"
# Build settings
markdown: kramdown
highlighter: rouge
theme: minima
# Plugins
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
# SEO and social
author:
name: "salacoste"
email: ""
social:
- https://github.com/salacoste/openapi-mcp-swagger
# Navigation
header_pages:
- docs/INSTALLATION.md
- docs/guides/QUICKSTART.md
- docs/api/MCP_PROTOCOL.md
- CONTRIBUTING.md
# Exclude from processing
exclude:
- .bmad-core/
- src/
- tests/
- scripts/
- vendor/
- Gemfile
- Gemfile.lock
- node_modules/
- "*.gemspec"
- "*.gem"
- .pytest_cache/
- __pycache__/
- "*.pyc"
- .coverage
- htmlcov/
- .venv/
- venv/
- .env
# Include in processing
include:
- _pages/
- docs/
# Collections
collections:
docs:
output: true
permalink: /:collection/:name/
# Defaults
defaults:
- scope:
path: ""
type: "posts"
values:
layout: "post"
- scope:
path: ""
type: "docs"
values:
layout: "page"
- scope:
path: ""
values:
layout: "default"