From 778ebe2c037a1aefd18517012157e2c302904041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Gr=C3=B8ndahl?= Date: Mon, 4 May 2026 14:58:50 +0200 Subject: [PATCH] fix: backtick http-proxy example URL to prevent broken doc links The example URL `http://proxy-server-ip:proxy-port` in the --http-proxy flag description was being rendered as a clickable link by Mintlify, causing 79 broken-link reports across client_reference/ pages. Wrapping in backticks makes it render as inline code instead. Closes kosli-dev/docs#105 --- cmd/kosli/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kosli/root.go b/cmd/kosli/root.go index f2ce06024..39a734ccd 100644 --- a/cmd/kosli/root.go +++ b/cmd/kosli/root.go @@ -91,7 +91,7 @@ The ^.kosli_ignore^ will be treated as part of the artifact like any other file, artifactDisplayName = "[optional] Artifact display name, if different from file, image or directory name." orgFlag = "The Kosli organization." hostFlag = "[defaulted] The Kosli endpoint." - httpProxyFlag = "[optional] The HTTP proxy URL including protocol and port number. e.g. 'http://proxy-server-ip:proxy-port'" + httpProxyFlag = "[optional] The HTTP proxy URL including protocol and port number. e.g. `http://proxy-server-ip:proxy-port`" dryRunFlag = "[optional] Run in dry-run mode. When enabled, no data is sent to Kosli and the CLI exits with 0 exit code regardless of any errors." maxAPIRetryFlag = "[defaulted] How many times should API calls be retried when the API host is not reachable." configFileFlag = "[optional] The Kosli config file path."