gomarkdown / markdown

markdown parser and HTML renderer for Go
Other
1.37k stars 172 forks source link

Can't parse headings without spacing #245

Closed CaledoniaProject closed 2 years ago

CaledoniaProject commented 2 years ago

I'm converting the following markdown to HTML

##test

And it remains

##test

However, ## test worked fine. It's clearly a bug to me, please fix it.

kjk commented 2 years ago

Majority of markdown parsers do the same thing: https://babelmark.github.io/?text=%23%23test%0A

CaledoniaProject commented 2 years ago

That is so weird ..... in Typora.app it worked fine, I'll do a regex replacement.