aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2024-04-26 08:24:06 +0200
committerGravatar Christian Hesse <mail@eworm.de>2024-04-29 17:41:49 +0200
commit3c01257defd026650f487bff34c90b8ff421ee31 (patch)
treef1ec674fb3421c77a76a69d88df370bcbb1b2044
parent05fb41b92396cbb131eea79b72c68eb26264c663 (diff)
mod/notification-telegram: support excluding characters from escaping...
... to support formatting in plain text. Handle with care, this can break the request if done wrong!
-rw-r--r--mod/notification-telegram.rsc5
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/notification-telegram.rsc b/mod/notification-telegram.rsc
index efde85a..858ab1b 100644
--- a/mod/notification-telegram.rsc
+++ b/mod/notification-telegram.rsc
@@ -83,6 +83,7 @@
:local EscapeMD do={
:local Text [ :tostr $1 ];
:local Mode [ :tostr $2 ];
+ :local Excl [ :tostr $3 ];
:global CharacterReplace;
:global IfThenElse;
@@ -93,7 +94,9 @@
"#"; "+"; "-"; "="; "|"; "{"; "}"; "."; "!" };
}
:foreach Char in=($Chars->$Mode) do={
- :set Text [ $CharacterReplace $Text $Char ("\\" . $Char) ];
+ :if ([ :typeof [ :find $Excl $Char ] ] = "nil") do={
+ :set Text [ $CharacterReplace $Text $Char ("\\" . $Char) ];
+ }
}
:if ($Mode = "body") do={