From bb9f153d298f2638206b65d4ba94f0e2ea13a0b1 Mon Sep 17 00:00:00 2001 From: Benjamin Mintz Date: Fri, 1 Feb 2019 02:37:32 +0000 Subject: [PATCH] commands.clean_content: escape || spoilers || --- discord/ext/commands/converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index 8e2766102..3006b2007 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -475,7 +475,7 @@ class clean_content(Converter): if self.escape_markdown: transformations = { re.escape(c): '\\' + c - for c in ('*', '`', '_', '~', '\\') + for c in ('*', '`', '_', '~', '\\', '||') } def replace(obj):