do not include > in URL

This commit is contained in:
FliegendeWurst 2021-04-21 20:07:24 +02:00
parent 5bef5b803b
commit 810a9cae41

View File

@ -6,7 +6,7 @@ const EXCLUDE_PATTERNS: [(&'static str, &'static str); 1] = [("bash", r"[[:cntrl
const PATTERNS: [(&'static str, &'static str); 14] = [
("markdown_url", r"\[[^]]*\]\(([^)]+)\)"),
("url", r"((https?://|git@|git://|ssh://|ftp://|file:///)[^ )]+)"),
("url", r"((https?://|git@|git://|ssh://|ftp://|file:///)[^ )>]+)"),
("diff_a", r"--- a/([^ ]+)"),
("diff_b", r"\+\+\+ b/([^ ]+)"),
("docker", r"sha256:([0-9a-f]{64})"),