diff --git a/BSIPA-ModList/Bundles/consolas b/BSIPA-ModList/Bundles/consolas
index 13341231..33f96f3c 100644
Binary files a/BSIPA-ModList/Bundles/consolas and b/BSIPA-ModList/Bundles/consolas differ
diff --git a/BSIPA-ModList/UI/ViewControllers/MarkdownView.cs b/BSIPA-ModList/UI/ViewControllers/MarkdownView.cs
index 092aac8f..1486cfe7 100644
--- a/BSIPA-ModList/UI/ViewControllers/MarkdownView.cs
+++ b/BSIPA-ModList/UI/ViewControllers/MarkdownView.cs
@@ -492,7 +492,11 @@ namespace BSIPA_ModList.UI.ViewControllers
break;
case InlineTag.Code:
EnsureText();
- currentText.text += $"{inl.LiteralContent}";
+ currentText.text += $"{inl.LiteralContent}";
+ break;
+ case InlineTag.SoftBreak:
+ EnsureText();
+ currentText.text += " "; // soft breaks translate to a space
break;
case InlineTag.Link:
EnsureText();