diff options
author | Marcel Ribeiro-Dantas <ribeirodantasdm@gmail.com> | 2024-06-21 02:11:51 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 02:11:51 -0300 |
commit | 30edebae889893e1b657b1a2326576450f2f56d4 (patch) | |
tree | 3af5406b8c1e08c9ffac81a9db86cb7b62dffbf6 /httpie.html.markdown | |
parent | 7611e1f1904619b58333a8c564500d9cb2b584d9 (diff) | |
parent | 790a78e3cf1ec8610699ed34255d459f84a92a18 (diff) |
Merge pull request #4969 from verhovsky/remove-bare-links
Remove bare links
Diffstat (limited to 'httpie.html.markdown')
-rw-r--r-- | httpie.html.markdown | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/httpie.html.markdown b/httpie.html.markdown index 40481dff..2b68f287 100644 --- a/httpie.html.markdown +++ b/httpie.html.markdown @@ -26,8 +26,8 @@ http --offline https://api.example.com/posts ### URL shortcuts for `localhost` -HTTPie supports a curl-like shorthand for localhost. For instance, ":3000" -expands to "http://localhost:3000". If the port is omitted, it assumes port 80. +HTTPie supports a curl-like shorthand for localhost. For instance, `:3000` +expands to `http://localhost:3000`. If the port is omitted, it assumes port 80. ```bash http :/users # http://localhost/users @@ -48,7 +48,6 @@ http https://api.example.com/tags title="Tutorial" slug="tutorial" # POST a new ## Querystring Parameters - If you're manually adding query string parameters in the terminal, try the `param==value` syntax. It avoids shell escaping for & separators and automatically URL-escapes special characters in parameter names and values. @@ -116,5 +115,5 @@ http --follow GET https://example.com # Follow Redirects ## Further Reading -- [Official Documentation](https://httpie.io/docs/cli). -- [GitHub](https://github.com/httpie). +- [Official Documentation](https://httpie.io/docs/cli) +- [GitHub](https://github.com/httpie) |