diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-02-26 12:49:04 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-02-26 12:49:04 +0900 |
commit | c411bd00d9a4574ee858003493b523811c50d024 (patch) | |
tree | 9dbc67f656121e1a5cba4340cf8556bf11ef466d | |
parent | c9b3cce218c5724d511b6e0dffb8d389ce19c08f (diff) | |
download | libquotient-c411bd00d9a4574ee858003493b523811c50d024.tar.gz libquotient-c411bd00d9a4574ee858003493b523811c50d024.zip |
prettyPrint(): only linkify http(s), ftp, mailto, magnet links
Closes #278.
-rw-r--r-- | lib/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.cpp b/lib/util.cpp index e22a1df5..fc90ea76 100644 --- a/lib/util.cpp +++ b/lib/util.cpp @@ -39,7 +39,7 @@ static void linkifyUrls(QString& htmlEscapedText) // Note: outer parentheses are a part of C++ raw string delimiters, not of // the regex (see http://en.cppreference.com/w/cpp/language/string_literal). static const QRegularExpression FullUrlRegExp(QStringLiteral( - R"(((www\.(?!\.)|[a-z][a-z0-9+.-]*://)(&(?![lg]t;)|[^&\s<>'"])+(&(?![lg]t;)|[^&!,.\s<>'"\]):])))" + R"(((www\.(?!\.)|(https?|ftp|magnet)://)(&(?![lg]t;)|[^&\s<>'"])+(&(?![lg]t;)|[^&!,.\s<>'"\]):])))" ), RegExpOptions); // email address: // [word chars, dots or dashes]@[word chars, dots or dashes].[word chars] |