diff --git a/shared/naturalcrit/markdown.js b/shared/naturalcrit/markdown.js
index 61ba0669b..3b9f0e9f0 100644
--- a/shared/naturalcrit/markdown.js
+++ b/shared/naturalcrit/markdown.js
@@ -415,7 +415,7 @@ const forcedParagraphBreaks = {
}
},
renderer(token) {
- return `
`.repeat(token.length).concat('\n');
+ return `
\n`.repeat(token.length);
}
};