hey-red / Markdown

Open source C# implementation of Markdown processor, as featured on Stack Overflow.
MIT License
134 stars 51 forks source link

A header followed by a bullet fails to render corretly #84

Closed bobend closed 6 years ago

bobend commented 6 years ago

The input #Header 1\n* Bullet\n becomes <p>#Header 1\n* Bullet</p> should have been <h1>Header 1</h1>\n\n<ul>\n<li>Bullet</li>\n</ul>

bobend commented 6 years ago

Sorry , it was BOM