]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
verbose.md: explain the { and } prefixes
authorDaniel Stenberg <daniel@haxx.se>
Thu, 22 Jan 2026 09:04:41 +0000 (10:04 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 23 Jan 2026 13:34:44 +0000 (14:34 +0100)
The prefixes are now made as subtitles

Reported-by: Thibault de Villèle
Fixes #20386
Closes #20396

docs/cmdline-opts/verbose.md

index 819899ce248e9bc04eef93c024a3bc457625f8d0..60519c11788a84113bbd5f47bba89e6187a57595 100644 (file)
@@ -21,10 +21,31 @@ Example:
 # `--verbose`
 
 Make curl output verbose information during the operation. Useful for
-debugging and seeing what's going on under the hood. A line starting with \>
-means header data sent by curl, \< means header data received by curl that is
-hidden in normal cases, and a line starting with * means additional info
-provided by curl.
+debugging and seeing what's going on under the hood. Verbose output lines are
+prefixed with letters:
+
+## >
+
+header sent by curl
+
+## <
+
+header received by curl
+
+## }
+
+data sent by curl
+
+## {
+
+data received by curl
+
+## *
+
+additional info provided by curl. Text that adds explanations what goes on and
+about choices curl does.
+
+##
 
 If you only want HTTP headers in the output, --show-headers or --dump-header
 might be more suitable options.