Better spacing around code blob

Bill Gertz
2019-10-15 17:33:37 +02:00
parent c263e2615d
commit 56b95e9759

@@ -186,12 +186,14 @@ Your HTTP method call may require additional headers for Authorization, ContentT
```sh
...
myusername="$MYAPI_username"
mypassword="$MYAPI_password"
mycredentials="$(printf "%s" "$myusername:$mypassword" | _base64)"
export _H1="Authorization: Basic $mycredentials"
export _H2="ContentType: application/json"
...
```