mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
Fix trailing backslash on lists in Classic editor
Previously, when editing a post with an unordered list in it via the Classic editor, backslashes (\) would get added to the end of each list item. This fixes that. Closes #480
This commit is contained in:
parent
e983c4527f
commit
de5e91cb71
1 changed files with 1 additions and 7 deletions
|
@ -40,13 +40,7 @@ class ProseMirrorView {
|
|||
$title.value = title;
|
||||
}
|
||||
|
||||
const doc = writeFreelyMarkdownParser.parse(
|
||||
// Replace all "solo" \n's with \\\n for correct markdown parsing
|
||||
// Can't use lookahead or lookbehind because it's not supported on Safari
|
||||
content.replace(/([^]{0,1})(\n)([^]{0,1})/g, (match, p1, p2, p3) => {
|
||||
return p1 !== "\n" && p3 !== "\n" ? p1 + "\\\n" + p3 : match;
|
||||
})
|
||||
);
|
||||
const doc = writeFreelyMarkdownParser.parse(content)
|
||||
|
||||
this.view = new EditorView(target, {
|
||||
state: EditorState.create({
|
||||
|
|
Loading…
Reference in a new issue