Skip to content

Commit

Permalink
linter: fix line length
Browse files Browse the repository at this point in the history
Signed-off-by: Patrizio Bekerle <[email protected]>
  • Loading branch information
pbek committed Sep 18, 2024
1 parent e574c61 commit 9c81abe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/entities/bookmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ QVector<Bookmark> Bookmark::parseBookmarks(const QString &text, bool withBasicUr

if (withBasicUrls) {
// parse named links like [name](http://my.site.com)
i = QRegularExpression(QStringLiteral(R"(\[([^\[\]]+?)\]\(([\w-]+://.+?)\))")).globalMatch(text);
i = QRegularExpression(QStringLiteral(R"(\[([^\[\]]+?)\]\(([\w-]+://.+?)\))"))
.globalMatch(text);

while (i.hasNext()) {
QRegularExpressionMatch match = i.next();
Expand Down

0 comments on commit 9c81abe

Please sign in to comment.