mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge pull request #3008
Andrew Morgan (2): Added codeblock support with ` char. Fixed HTML chars breaking recognition.
This commit is contained in:
commit
ce5cad4c0f
@ -193,6 +193,7 @@ QString ChatMessage::detectMarkdown(const QString &str)
|
||||
"|(\\-)([^\\-]{2,})(\\-)" // Underline -text-
|
||||
"|(\\~)([^\\~]{2,})(\\~)" // Strike ~text~
|
||||
"|(\\~~)([^\\~\\~]{2,})(\\~~)" // Strike ~~text~~
|
||||
"|(\\`)([^\\`]{2,})(\\`)" // Codeblock `text`
|
||||
);
|
||||
|
||||
// Support for multi-line text
|
||||
@ -209,17 +210,14 @@ QString ChatMessage::detectMarkdown(const QString &str)
|
||||
|
||||
QString htmledSnippet;
|
||||
|
||||
// Check for surrounding spaces and/or beginning/end of line
|
||||
if (!((snipCheck.startsWith(' ') || offset == 0) && (snipCheck.endsWith(' ') || offset + snipCheck.trimmed().length() == out.length())))
|
||||
qDebug() << "snipCheck: " << snipCheck << " out: " << out << " snipLength: " << snippet.toHtmlEscaped().length() << " outLength: " << out.toHtmlEscaped().length();
|
||||
|
||||
// Only parse if surrounded by spaces, newline(s) and/or beginning/end of line
|
||||
if ((snipCheck.startsWith(' ') || snipCheck.startsWith('>') || offset == 0) && ((snipCheck.endsWith(' ') || snipCheck.endsWith('<')) || offset + snippet.toHtmlEscaped().length() == out.toHtmlEscaped().length()))
|
||||
{
|
||||
offset += snippet.length();
|
||||
continue;
|
||||
}
|
||||
|
||||
int mul = 0; // Determines how many characters to strip from markdown text
|
||||
|
||||
// Set mul depending on markdownPreference
|
||||
if (Settings::getInstance().getMarkdownPreference() == 2)
|
||||
if (Settings::getInstance().getMarkdownPreference() == MarkdownType::WITHOUT_CHARS)
|
||||
mul = 2;
|
||||
|
||||
// Match captured string to corresponding md format
|
||||
@ -237,10 +235,14 @@ QString ChatMessage::detectMarkdown(const QString &str)
|
||||
htmledSnippet = QString(" <s>%1</s> ").arg(snippet.mid(mul/2,snippet.length()-mul));
|
||||
else if (exp.cap(19) == "~~" && snippet.length() > 4) // Strikethrough ~~text~~
|
||||
htmledSnippet = QString(" <s>%1</s> ").arg(snippet.mid(mul,snippet.length()-2*mul));
|
||||
else if (exp.cap(22) == "`" && snippet.length() > 2) // Codeblock `text`
|
||||
htmledSnippet = QString("<font color=#595959><code>%1</code></font>").arg(snippet.mid(mul/2,snippet.length()-mul));
|
||||
else
|
||||
htmledSnippet = snippet;
|
||||
out.replace(offset, exp.cap().length(), htmledSnippet);
|
||||
offset += htmledSnippet.length();
|
||||
} else
|
||||
offset += snippet.length();
|
||||
}
|
||||
outLines.push_back(out);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user