Browse Source

Forgot to escape backticks.

pull/2049/head
Rapptz 6 years ago
parent
commit
7b95611e62
  1. 2
      discord/utils.py

2
discord/utils.py

@ -405,7 +405,7 @@ def escape_markdown(text, *, as_needed=False, ignore_links=True):
return is_url
return '\\' + groupdict['markdown']
regex = r'(?P<markdown>[_\\~|\*])'
regex = r'(?P<markdown>[_\\~|\*`])'
if ignore_links:
regex = '(?:%s|%s)' % (url_regex, regex)
return re.sub(regex, replacement, text)

Loading…
Cancel
Save