0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-02 15:02:38 +00:00

Merge pull request #4058 from naturalcrit/Change_Hardbreak_-_to_-br-

Change hardbreak  to `<br>`
This commit is contained in:
Trevor Buckner
2025-02-19 16:25:54 -05:00
committed by GitHub
7 changed files with 10 additions and 32 deletions

View File

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