diff --git a/src/core/misc.cpp b/src/core/misc.cpp index fa92807bf..50c12dc12 100644 --- a/src/core/misc.cpp +++ b/src/core/misc.cpp @@ -527,6 +527,8 @@ QString misc::parseHtmlLinks(const QString &raw_text) static QRegExp reNoScheme(""); result.replace(reNoScheme, ""); + // to preserve plain text formatting + result = "

" + result + "

"; return result; }