Skip to content

Latest commit

History

History
28 lines (20 loc) 路 540 Bytes

strange-planets-buy.md

File metadata and controls

28 lines (20 loc) 路 540 Bytes
markdown-to-jsx
patch

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.