diff options
author | Aaron Sonin <10217842+byteduck@users.noreply.github.com> | 2023-01-12 20:11:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 20:11:46 -0800 |
commit | b2f48eaeb8cd6dbdf9b8bbbf1a163339c88173a7 (patch) | |
tree | 80773415691e538d437bc03c42f73a8abd01f126 /launcher/ui/pages/modplatform | |
parent | 160dd09fc2788fea17c8e9e332c2877586640971 (diff) | |
parent | 5e89ba70797df863c7eeae9b147080e7dbdf6d3b (diff) | |
download | PrismLauncher-b2f48eaeb8cd6dbdf9b8bbbf1a163339c88173a7.tar.gz PrismLauncher-b2f48eaeb8cd6dbdf9b8bbbf1a163339c88173a7.tar.bz2 PrismLauncher-b2f48eaeb8cd6dbdf9b8bbbf1a163339c88173a7.zip |
Merge branch 'PrismLauncher:develop' into instance-accounts
Diffstat (limited to 'launcher/ui/pages/modplatform')
-rw-r--r-- | launcher/ui/pages/modplatform/ModPage.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/launcher/ui/pages/modplatform/ModPage.cpp b/launcher/ui/pages/modplatform/ModPage.cpp index 677bc4d6..75be25b2 100644 --- a/launcher/ui/pages/modplatform/ModPage.cpp +++ b/launcher/ui/pages/modplatform/ModPage.cpp @@ -428,6 +428,10 @@ void ModPage::updateUi() text += "<hr>"; HoeDown h; + + // hoedown bug: it doesn't handle markdown surrounded by block tags (like center, div) so strip them + current.extraData.body.remove(QRegularExpression("<[^>]*(?:center|div)\\W*>")); + ui->packDescription->setHtml(text + (current.extraData.body.isEmpty() ? current.description : h.process(current.extraData.body.toUtf8()))); ui->packDescription->flush(); } |