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):