Fix sometimes-broken inbound mentions

This commit is contained in:
Andrew Ferrazzutti 2022-04-12 00:53:48 -04:00
parent b9cf30e9e6
commit 38d307c684
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ _END = r"$|\s"
_TEXT_NO_SURROUNDING_SPACE = r"(?:[^\s].*?[^\s])|[^\s]"
COMMON_REGEX = re.compile(rf"({_START})([_~*])({_TEXT_NO_SURROUNDING_SPACE})\2({_END})")
INLINE_CODE_REGEX = re.compile(rf"({_START})(`)(.+?)`({_END})")
MENTION_REGEX = re.compile(r"@([0-9]{1,15})\u2063(.+?)\u2063")
MENTION_REGEX = re.compile(r"@(\d+)\u2063(.+?)\u2063")
tags = {"_": "em", "*": "strong", "~": "del", "`": "code"}