0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 14:02:41 +00:00

Add \n after each <br>

This commit is contained in:
Trevor Buckner
2025-02-19 16:00:37 -05:00
parent fc065d250b
commit 578a8d7eba

View File

@@ -415,7 +415,7 @@ const forcedParagraphBreaks = {
} }
}, },
renderer(token) { renderer(token) {
return `<br>`.repeat(token.length).concat('\n'); return `<br>\n`.repeat(token.length);
} }
}; };