0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 22:52:40 +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) {
return `<br>`.repeat(token.length).concat('\n');
return `<br>\n`.repeat(token.length);
}
};