]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
MANUAL.md: wrap two example urls that overrun styling
authorMartin Peck <mpeck@microsoft.com>
Wed, 10 Jul 2024 14:58:28 +0000 (15:58 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 10 Jul 2024 21:39:39 +0000 (23:39 +0200)
Closes #14149

docs/MANUAL.md

index 03de0eb39711ec868b666a304125e31365e6e3ae..33596663c1121bffff9b00efeb27d99de34193a3 100644 (file)
@@ -309,7 +309,8 @@ Post a simple `name` and `phone` guestbook.
 
 Or automatically [URL encode the data](https://everything.curl.dev/http/post/url-encode).
 
-    curl --data-urlencode "name=Rafael Sagula&phone=3320780" http://www.example.com/guest.cgi
+    curl --data-urlencode "name=Rafael Sagula&phone=3320780"
+      http://www.example.com/guest.cgi
 
 How to post a form with curl, lesson #1:
 
@@ -343,7 +344,8 @@ We want to enter user `foobar` with password `12345`.
 
 To post to this, you would enter a curl command line like:
 
-    curl -d "user=foobar&pass=12345&id=blablabla&ding=submit" http://example.com/post.cgi
+    curl -d "user=foobar&pass=12345&id=blablabla&ding=submit"
+      http://example.com/post.cgi
 
 While `-d` uses the application/x-www-form-urlencoded mime-type, generally
 understood by CGI's and similar, curl also supports the more capable