markdown-js
markdown-js copied to clipboard
Bug in Header+Anchor parsing
When converting
[foo](bar)
==========
to HTML, the .toHTML method returns
<h1>[foo](bar)</h1>
instead of
<h1><a href="bar">foo</a></h1>