Events from pulldown-cmark:
"`\n `f " -> [
Start(Paragraph)
Code(Borrowed(""))
Text(Borrowed("f"))
End(Paragraph)
]
Events from commonmark.js:
"`\n `f " -> [
Start(Paragraph)
Code(Boxed(" "))
Text(Boxed("f "))
End(Paragraph)
]
XML from commonmark.js:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE document SYSTEM "CommonMark.dtd">
<document xmlns="http://commonmark.org/xml/1.0">
<paragraph>
<code> </code>
<text>f</text>
</paragraph>
</document>
This might be the same as #655, but here it looks like "`\n `" is turned into "", which means that both the space and the newline got lost.