You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an issue with cmark_render_commonmark function when it gets as an input a document that has a text node with a whitespace in the beginning, it does not return a correct markdown string.
For example, the following document:
Document node -> Paragraph node -> Text node with text literal
is rendered as text\n, which is a code block.
From looking at some other implementation I see the whitespace is replaced with  . Can this applied in cmark? thanks
The text was updated successfully, but these errors were encountered:
There is an issue with
cmark_render_commonmark
function when it gets as an input a document that has a text node with a whitespace in the beginning, it does not return a correct markdown string.For example, the following document:
Document node -> Paragraph node -> Text node with
text
literalis rendered as
text\n
, which is a code block.From looking at some other implementation I see the whitespace is replaced with
 
. Can this applied in cmark? thanksThe text was updated successfully, but these errors were encountered: