From b747170b5dfd58ccb4198f89720401793b671523 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 7 Apr 2024 15:49:26 -0400 Subject: [PATCH] Updated Notify_discord (markdown) --- Notify_discord.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Notify_discord.md b/Notify_discord.md index 0d65378..9e5be2b 100644 --- a/Notify_discord.md +++ b/Notify_discord.md @@ -74,4 +74,17 @@ Send a notification that notifies `@everyone` in the channel: # Assuming our {WebhookToken} is JHMHI8qBe7bk2ZwO5U711o3dV_js apprise -vv -t "Hello All" -b "Test Message that pings @everyone" \ "discord://4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js" +``` + +Send a notification that leverages the built in `markdown` support of Discord: +```bash +# Assuming our {WebhookID} is 4174216298 +# Assuming our {WebhookToken} is JHMHI8qBe7bk2ZwO5U711o3dV_js +cat << _EOF | apprise -vv "discord://4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js?format=markdown" +# Title + +- Bullet 1 +- Bullet 2 +- Bullet 3 +_EOF ``` \ No newline at end of file