summaryrefslogtreecommitdiff
path: root/docs/MANUAL.md
diff options
context:
space:
mode:
author0xflotus <0xflotus@gmail.com>2020-12-07 18:09:37 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-12-11 18:06:41 +0100
commit5253444090bf198507553247ee790ec216c8a702 (patch)
treeaf9cd619688dfcd5a4bb1929bbf53852c8bcad58 /docs/MANUAL.md
parenteddae974060dc2f54d873aaab304fed853ec2cab (diff)
downloadcurl-5253444090bf198507553247ee790ec216c8a702.tar.gz
docs: enable syntax highlighting in several docs files
... for better readability Closes #6286
Diffstat (limited to 'docs/MANUAL.md')
-rw-r--r--docs/MANUAL.md18
1 files changed, 11 insertions, 7 deletions
diff --git a/docs/MANUAL.md b/docs/MANUAL.md
index ca9700b2c..466ab19d4 100644
--- a/docs/MANUAL.md
+++ b/docs/MANUAL.md
@@ -307,12 +307,14 @@ Example:
(page located at `http://www.formpost.com/getthis/`)
- <form action="post.cgi" method="post">
- <input name=user size=10>
- <input name=pass type=password size=10>
- <input name=id type=hidden value="blablabla">
- <input name=ding value="submit">
- </form>
+```html
+<form action="post.cgi" method="post">
+<input name=user size=10>
+<input name=pass type=password size=10>
+<input name=id type=hidden value="blablabla">
+<input name=ding value="submit">
+</form>
+```
We want to enter user 'foobar' with password '12345'.
@@ -419,7 +421,9 @@ if it should be used on secure connections only (`secure`).
If you've received a page from a server that contains a header like:
- Set-Cookie: sessionid=boo123; path="/foo";
+```http
+Set-Cookie: sessionid=boo123; path="/foo";
+```
it means the server wants that first pair passed on when we get anything in a
path beginning with "/foo".