Browse Source

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
pull/484/head
Matt Baer 2 years ago
parent
commit
de5e91cb71
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      prose/prose.js

+ 1
- 7
prose/prose.js View File

@@ -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…
Cancel
Save