File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ module.exports = function (opts) {
5757 '\\{(?:(?!' + re . src_ZCc + '|[}]).)*\\}|' +
5858 '\\"(?:(?!' + re . src_ZCc + '|["]).)+\\"|' +
5959 "\\'(?:(?!" + re . src_ZCc + "|[']).)+\\'|" +
60- "\\'(?=" + re . src_pseudo_letter + '|[-])|' + // allow `I'm_king` if no pair found
60+ "\\'(?=" + re . src_pseudo_letter + '|[-|' + re . src_ZPCc + ' ])|' + // allow `I'm_king` if no pair found
6161 '\\.{2,}[a-zA-Z0-9%/&]|' + // google has many dots in "google search" links (#66, #81).
6262 // github has ... in commit range links,
6363 // Restrict to
Original file line number Diff line number Diff line change @@ -135,6 +135,10 @@ http://foo.com/blah_blah_"doublequoted"
135135
136136http://foo.com/blah_blah_'singlequoted'
137137
138+ https://domain.com/@username:4/some-words'&=0
139+
140+ https://domain.com/@username:4/some-words':0
141+
138142(Scoped like http://example.com/foo_bar)
139143http://example.com/foo_bar
140144
You can’t perform that action at this time.
0 commit comments