If you are using for example Gatsby like I do, don’t enlose html from markdown into <p>
tag.
The content of <p>
will be missing in some cases.
Anyway<p>
should not include any block elements such as <p>
.
Instead of:
<p className="article-post" dangerouslySetInnerHTML={{ __html: html }} />
use:
<div className="article-post" dangerouslySetInnerHTML={{ __html: html }} />