diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-06-03 13:31:20 -0600 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-06-03 13:31:20 -0600 |
commit | 790a78e3cf1ec8610699ed34255d459f84a92a18 (patch) | |
tree | a62702ae158c36167e3047f7be5d16197cff0859 /httpie.html.markdown | |
parent | 29bf4c1b9f353fa3321f663dc52c1b227a1ed9e5 (diff) |
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) |