aboutsummaryrefslogtreecommitdiffstats
path: root/bot/utils/helpers.py
diff options
context:
space:
mode:
authorGravatar Vivaan Parashar <[email protected]>2021-05-16 22:11:23 +0530
committerGravatar Vivaan Parashar <[email protected]>2021-05-16 22:11:23 +0530
commit24219ed346593273f9778fc3b835dc0ca2e88cca (patch)
tree4f839b20d7336e751a982de50ca239bec614f3b6 /bot/utils/helpers.py
parentsquish imports (diff)
parentMerge branch 'main' into feature/stackoverflow (diff)
Update branch
Diffstat (limited to 'bot/utils/helpers.py')
-rw-r--r--bot/utils/helpers.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bot/utils/helpers.py b/bot/utils/helpers.py
new file mode 100644
index 00000000..74c2ccd0
--- /dev/null
+++ b/bot/utils/helpers.py
@@ -0,0 +1,8 @@
+import re
+
+
+def suppress_links(message: str) -> str:
+ """Accepts a message that may contain links, suppresses them, and returns them."""
+ for link in set(re.findall(r"https?://[^\s]+", message, re.IGNORECASE)):
+ message = message.replace(link, f"<{link}>")
+ return message