readthedocs / recommonmark

A markdown parser for docutils
https://recommonmark.readthedocs.io/
MIT License
340 stars 252 forks source link

Sphinx 1.4 + recommonmark not handling headings using hash (#) syntax #201

Closed jeremycart closed 2 years ago

jeremycart commented 4 years ago

The seemingly most basic construct, headings specified like: # Heading 1 ## Heading 2 ... isn't working on markdown run through recommonmark-enabled Sphinx 1.4.

Seems to handle properly headings like: Heading 1 ======= Heading 2 ----------

But not the hash version. I'm not seeing anybody else referencing such a problem. Any ideas?

jeremycart commented 4 years ago

I should mention that the HTML produced looks like: <p># Heading 1</p>