mity / md4c

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

Setext underline not recognized if a tab follows it. #215

Closed mity closed 5 months ago

mity commented 5 months ago

Input: $ printf 'title\n--\t\n' | md2html

Got:

<p>title
--      </p>

It should be

<h2>title</h2>