Fenced code blocks does not check for backticks #88
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fenced code blocks should check the content for any sequence of backticks, as CommonMark defines a code block to end with a sequence of backticks of at least the number it started.
Meaning this is perfectly valid markdown:
But currently
prosemirror-markdownwill serialize this:to this markdown:
which is a code block followed by a paragraph "code" and a second code block.