fix: Remove extra spaces around hard break serialization, closes #4616

This commit is contained in:
Tom Moor
2023-01-02 10:26:46 -05:00
parent 205f7d2a7e
commit 846a1f8eab

View File

@@ -50,7 +50,7 @@ export default class HardBreak extends Node {
}
toMarkdown(state: MarkdownSerializerState) {
state.write(" \\n ");
state.write("\\n");
}
parseMarkdown() {