From efb32eb0f7392512e69513e746985cdc2603bc5f Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Tue, 13 Jan 2026 15:13:20 -0700 Subject: [PATCH] Fix being able to break out of the parser --- src/ui/content.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/content.cpp b/src/ui/content.cpp index d017a16..c8b2f93 100644 --- a/src/ui/content.cpp +++ b/src/ui/content.cpp @@ -23,7 +23,7 @@ void Content::parseCrabcontent(const QString &input) { if (line.startsWith("text:")) { - result += "

" + line.mid(5).trimmed() + "

\n"; + result += "

" + line.mid(5).trimmed().toHtmlEscaped() + "

\n"; } }