mity / md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
MIT License
755 stars 138 forks source link

TAB in heading #248

Closed step- closed 4 months ago

step- commented 4 months ago

Different treatment of TAB in heading comparing cmark and md2html. Test cases 10 and 82 from the CommonMark test specification.

10

#   Foo

82

  Foo *bar
baz*    
====

cmark output:

<h1>Foo</h1>
<h1>Foo <em>bar
baz</em></h1>

md2html output:

<h1>    Foo</h1>
<h1>Foo <em>bar
baz</em>    </h1>

Versions:

mity commented 4 months ago

Fixed in 64f36805b02a874baa467a980029782c686ade1c.