From 9833ea82e247c0a01218d221293c9ed56b89d505 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 6 Apr 2019 20:14:05 -0400 Subject: [PATCH] Add helpers to escape markdown and mentions from text. Fixes #1673 --- discord/ext/commands/converter.py | 8 ++----- discord/utils.py | 40 +++++++++++++++++++++++++++++++ docs/api.rst | 5 ++++ 3 files changed, 47 insertions(+), 6 deletions(-) diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index 8676329c5..0ca9096ba 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -474,14 +474,10 @@ class clean_content(Converter): result = pattern.sub(repl, argument) if self.escape_markdown: - result = re.sub(r'\\', r'\\\\', result) - for c in ('*', '`', '_', '~', '|'): - regex = r'\{0}(?=([\s\S]*((?