Relax external link matching to ignore illegal characters

Fixes #2501, and rolls back some of #2324
print-window-tiddler
Jermolene 2016-07-20 11:37:44 +01:00
rodzic c4c7b1868c
commit e49d310ea9
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -495,7 +495,7 @@ exports.escapeRegExp = function(s) {
// Checks whether a link target is external, i.e. not a tiddler title
exports.isLinkExternal = function(to) {
var externalRegExp = /^(?:file|http|https|mailto|ftp|irc|news|data|skype):[^\s<>{}\[\]`|"\\^]+(?:\/|\b)$/i;
var externalRegExp = /^(?:file|http|https|mailto|ftp|irc|news|data|skype):[^\s<>{}\[\]`|"\\^]+(?:\/|\b)/i;
return externalRegExp.test(to);
};