Skip to content

Commit ad06779

Browse files
committed
softening url regex check
1 parent 10ff7a0 commit ad06779

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/atcb-util.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -472,10 +472,10 @@ function atcb_rewrite_html_elements(content, clear = false, iCalBreaks = false)
472472
// and build html for the rest
473473
// supporting: br, hr, p, strong, u, i, em, li, ul, ol, h (like h1, h2, h3, ...), url (= a)
474474
} else {
475-
content = content.replace(/\[url\]((?:(?!\[\/url\])[\w&$+.,:;=~!*'?@^%#|\s\-()[\]/])*)\[\/url\]/gi, function (match, p1) {
475+
content = content.replace(/\[url\]((?:(?!\[\/url\]).)*)\[\/url\]/gi, function (match, p1) {
476476
return atcb_parse_url_code(p1);
477477
});
478-
content = content.replace(/\{url\}((?:(?!\[\/url\])[\w&$+.,:;=~!*'?@^%#|\s\-()[\]/])*)\{\/url\}/gi, function (match, p1) {
478+
content = content.replace(/\{url\}((?:(?!\[\/url\]).)*)\{\/url\}/gi, function (match, p1) {
479479
return atcb_parse_url_code(p1);
480480
});
481481
content = content.replace(/\[(\/|)(br|hr|p|b|strong|u|i|em|li|ul|ol|h\d)(\s?\/?)\]/gi, '<$1$2$3>');

0 commit comments

Comments
 (0)