markdown-to-jsx
Advanced tools
Changelog
7.4.5
f5a0079: fix: double newline between consecutive blockquote syntax creates separate blockquotes
Previously, for consecutive blockquotes they were rendered as one:
Input
> Block A.1
> Block A.2
> Block B.1
Output
<blockquote>
<p>Block A.1</p>
<p>Block A.2</p>
<p>Block.B.1</p>
</blockquote>
This is not compliant with the GFM spec which states that consecutive blocks should be created if there is a blank line between them.
Changelog
7.4.4
children
to an empty string if no content is passed.