Fix markdown regex not supporting [] inside URLs

This commit is contained in:
Lonami Exo 2018-03-22 19:01:50 +01:00
parent c71d2e18cb
commit 33e908de42

View File

@ -21,7 +21,7 @@ DEFAULT_DELIMITERS = {
'```': MessageEntityPre
}
DEFAULT_URL_RE = re.compile(r'\[([^\]]+)\]\((.+?)\)')
DEFAULT_URL_RE = re.compile(r'\[([\S\s]+?)\]\((.+?)\)')
DEFAULT_URL_FORMAT = '[{0}]({1})'