comrak icon indicating copy to clipboard operation
comrak copied to clipboard

Different output from cmark

Open ttakuru88 opened this issue 1 year ago • 1 comments

Hi. I've noticed that comrak behaves different from cmark. Which behavior is correct?

Markdown

<span style="color:red;">**(ABC)**</span>

cmark 0.30.3

<p><!-- raw HTML omitted --><strong>(ABC)</strong><!-- raw HTML omitted --></p>

comrak 0.18.0

<p><!-- raw HTML omitted -->**(ABC)**<!-- raw HTML omitted --></p>

I hope cmark is correct.


Similar pattern.

Markdown

**(1)**=

cmark

<p><strong>(1)</strong>=</p>

comrak

<p>**(1)**=</p>

ttakuru88 avatar Jun 08 '23 09:06 ttakuru88

cmark is indeed correct.

kivikakk avatar Jun 09 '23 10:06 kivikakk

This was fixed by #428!

kivikakk avatar Jul 11 '24 11:07 kivikakk