diff options
Diffstat (limited to 'docs/MANUAL.md')
-rw-r--r-- | docs/MANUAL.md | 18 |
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". |