diff --git a/Notify_gotify.md b/Notify_gotify.md index a61d747..2c4d515 100644 --- a/Notify_gotify.md +++ b/Notify_gotify.md @@ -30,7 +30,7 @@ Send a Gotify message: # Assuming our {hostname} is localhost # Assuming our {token} is abcdefghijklmn apprise -vv -t "Test Message Title" -b "Test Message Body" \ - gotify://gotify.server.local/abcdefghijklmn + "gotify://gotify.server.local/abcdefghijklmn" # If your server is being hosted elsewhere and requires you to specify an # additional path to get to it, you can notify it as follows: @@ -38,7 +38,17 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \ # Assuming our {token} is abcdefghijklmn # Assuming our {path} is /my/gotify/path/ apprise -vv -t "Test Message Title" -b "Test Message Body" \ - gotify://gotify.server.local/my/gotify/path/abcdefghijklmn + "gotify://gotify.server.local/my/gotify/path/abcdefghijklmn" +``` + +There is also markdown support if you want to leverage it; simply add `format=markdown` into your URL: +```bash +# Assuming our {hostname} is localhost +# Assuming our {token} is abcdefghijklmn +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + "gotify://gotify.server.local/abcdefghijklmn?format=markdown" +# ^ ^ +# | | ``` ## Setup