mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
modernize: raw string literals
This commit is contained in:
parent
7ccc120f63
commit
7dab4d39ee
1 changed files with 3 additions and 3 deletions
|
@ -53,9 +53,9 @@ namespace strings {
|
||||||
const QString url_html = "<a href=\"\\1\">\\1</a>";
|
const QString url_html = "<a href=\"\\1\">\\1</a>";
|
||||||
const QRegularExpression url_regex(
|
const QRegularExpression url_regex(
|
||||||
// match an URL, that is not quoted, i.e.
|
// match an URL, that is not quoted, i.e.
|
||||||
// vvvvvvv match quote via negative lookahead/lookbehind vvvvvv
|
// vvvvvv match quote via negative lookahead/lookbehind vv
|
||||||
// vvvv atomic match url -> fail if there is a " before or after vv
|
// vvvv atomic match url -> fail if there is a " before or after vvv
|
||||||
"(?<!\")(?>((www\\.(?!\\.)|[a-z][a-z0-9+.-]*://)[^\\s<>'\"]+[^!,\\.\\s<>'\"\\]\\)\\:]))(?!\")");
|
R"((?<!")(?>((www\.(?!\.)|[a-z][a-z0-9+.-]*://)[^\s<>'"]+[^!,\.\s<>'"\]\)\:]))(?!"))");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Window geometry.
|
// Window geometry.
|
||||||
|
|
Loading…
Reference in a new issue