Fix sometimes-broken inbound mentions
This commit is contained in:
parent
b9cf30e9e6
commit
38d307c684
|
@ -29,7 +29,7 @@ _END = r"$|\s"
|
||||||
_TEXT_NO_SURROUNDING_SPACE = r"(?:[^\s].*?[^\s])|[^\s]"
|
_TEXT_NO_SURROUNDING_SPACE = r"(?:[^\s].*?[^\s])|[^\s]"
|
||||||
COMMON_REGEX = re.compile(rf"({_START})([_~*])({_TEXT_NO_SURROUNDING_SPACE})\2({_END})")
|
COMMON_REGEX = re.compile(rf"({_START})([_~*])({_TEXT_NO_SURROUNDING_SPACE})\2({_END})")
|
||||||
INLINE_CODE_REGEX = re.compile(rf"({_START})(`)(.+?)`({_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"}
|
tags = {"_": "em", "*": "strong", "~": "del", "`": "code"}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue