From b4337dcc8fd3f0b6a6fed9503484e24752978236 Mon Sep 17 00:00:00 2001 From: Nick Vigilante Date: Thu, 16 Jul 2026 17:32:12 +0000 Subject: [PATCH] docs: wrap agent-firewall inject-target placeholders in backticks The --session-id-inject-target help text is surfaced in Coder's generated CLI reference (docs/reference/cli/agent-firewall.md). Its `` and `` placeholders were parsed as unknown HTML tags by the docs site and dropped, so the format and example rendered as broken text. Wrap the format template and example in backticks so they render as inline code, matching coder/coder's documented "Placeholders in angle brackets" convention. This also converts the raw string literal to a double-quoted string, consistent with the neighboring option descriptions. No behavior change; terminal --help output only gains the backticks. > This PR was created with AI assistance (Coder Agents). --- cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cli.go b/cli/cli.go index 0042b38..2ad434a 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -197,7 +197,7 @@ func BaseCommand(version string) *serpent.Command { { Flag: "session-id-inject-target", Env: "BOUNDARY_SESSION_ID_INJECT_TARGET", - Description: `Inject target for session correlation headers. Repeat the flag once per target; each value describes exactly one target. Format: "domain= [path=]". Example: --session-id-inject-target "domain=prod.coder.com path=/api/v2/aibridge/*".`, + Description: "Inject target for session correlation headers. Repeat the flag once per target; each value describes exactly one target. Format: `domain= [path=]`. Example: `--session-id-inject-target \"domain=prod.coder.com path=/api/v2/aibridge/*\"`.", Value: &cliConfig.InjectSessionIDTarget, YAML: "", // CLI only, YAML uses session_id_inject_targets. },