Closed susnux closed 2 years ago
From commonmark spec example 515:
[link *foo **bar** `#`*](/uri)
Which correctly results in:
<p><a href="/uri">link <em>foo <strong>bar</strong> <code>#</code></em></a></p>
But the serialization of it using prosemirror-markdown results in this markdown which is definitely a different markdown:
prosemirror-markdown
[link ](/uri)*[foo](/uri) **[bar ](/uri)**[`#`](/uri)*
From commonmark spec example 515:
Which correctly results in:
But the serialization of it using
prosemirror-markdown
results in this markdown which is definitely a different markdown: