Closed jaredkrinke closed 10 months ago
For anyone who was curious about this issue, my mistake was that I put a chunk of HTML (well, JSX) nested under a <p>
element, but that chunk of HTML was derived from Markdown and thus had its own <p>
elements. So my fix was just to not nest the chunk of HTML under <p>
, i.e. I made it a sibling of existing <p>
elements instead of a child.