From 588962d24e8f91ac7e324ba7fbfd486aef5ba0c8 Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Tue, 17 Mar 2026 11:04:37 -0700 Subject: [PATCH] docs: escape {id} in api-server.md headings to fix MDX build (#1787) MDX v2+ interprets curly braces in regular markdown as JSX expressions. The headings 'GET /v1/responses/{id}' and 'DELETE /v1/responses/{id}' caused a ReferenceError during Docusaurus static site generation because 'id' is not a defined JavaScript variable. Escaped with backslashes. Co-authored-by: Test --- website/docs/user-guide/features/api-server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/user-guide/features/api-server.md b/website/docs/user-guide/features/api-server.md index cf488bb93..376676ef4 100644 --- a/website/docs/user-guide/features/api-server.md +++ b/website/docs/user-guide/features/api-server.md @@ -136,11 +136,11 @@ Use the `conversation` parameter instead of tracking response IDs: The server automatically chains to the latest response in that conversation. Like the `/title` command for gateway sessions. -### GET /v1/responses/{id} +### GET /v1/responses/\{id\} Retrieve a previously stored response by ID. -### DELETE /v1/responses/{id} +### DELETE /v1/responses/\{id\} Delete a stored response.