Skip to content

Commit 9f07b93

Browse files
gouravjshahclaude
andcommitted
fix: Escape curly braces in server-catalog.md
Replace {id}, {n}, {type} with <id>, <n>, <type> in table to prevent Docusaurus from interpreting them as JSX expressions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8ade0fc commit 9f07b93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/configuration/server-catalog.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,10 @@ The gateway validates catalogs on load:
220220

221221
| Rule | Error |
222222
|------|-------|
223-
| Duplicate `id` | "Duplicate server ID: {id}" |
224-
| Missing `id` | "Server at index {n} missing required field: id" |
225-
| Missing `runtime` | "Server '{id}' missing required field: runtime" |
226-
| Unknown runtime type | "Server '{id}' has unknown runtime type: {type}" |
223+
| Duplicate `id` | `Duplicate server ID: <id>` |
224+
| Missing `id` | `Server at index <n> missing required field: id` |
225+
| Missing `runtime` | `Server '<id>' missing required field: runtime` |
226+
| Unknown runtime type | `Server '<id>' has unknown runtime type: <type>` |
227227
| Invalid YAML | Standard YAML parse error |
228228

229229
## Organization Patterns

0 commit comments

Comments
 (0)