From fc055f11455792e94a11111888515a234ba915ad Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Tue, 14 Sep 2021 23:46:55 -0400 Subject: [PATCH] Updated Notify_gotify (markdown) --- Notify_gotify.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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