fix: Import of breaks from HTML files

This commit is contained in:
Tom Moor
2023-10-14 17:44:25 -07:00
committed by GitHub
parent 1305e3746b
commit 00ee8729ec

View File

@@ -9,7 +9,7 @@ export default function breaks(turndownService: TurndownService) {
turndownService.addRule("breaks", {
filter: ["br"],
replacement() {
return "\n";
return "\\n";
},
});
}