Skip to content

Commit 01cebca

Browse files
Version Packages (#562)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f5a0079 commit 01cebca

File tree

3 files changed

+30
-29
lines changed

3 files changed

+30
-29
lines changed

.changeset/strange-planets-buy.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# markdown-to-jsx
22

3+
## 7.4.5
4+
5+
### Patch Changes
6+
7+
- f5a0079: fix: double newline between consecutive blockquote syntax creates separate blockquotes
8+
9+
Previously, for consecutive blockquotes they were rendered as one:
10+
11+
**Input**
12+
13+
```md
14+
> Block A.1
15+
> Block A.2
16+
17+
> Block B.1
18+
```
19+
20+
**Output**
21+
22+
```html
23+
<blockquote>
24+
<p>Block A.1</p>
25+
<p>Block A.2</p>
26+
<p>Block.B.1</p>
27+
</blockquote>
28+
```
29+
30+
This is not compliant with the [GFM spec](https://github.github.com/gfm/#block-quotes) which states that consecutive blocks should be created if there is a blank line between them.
31+
332
## 7.4.4
433

534
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Convert markdown to JSX with ease for React and React-like projects. Super lightweight and highly configurable.",
44
"homepage": "https://markdown-to-jsx.quantizor.dev",
55
"license": "MIT",
6-
"version": "7.4.4",
6+
"version": "7.4.5",
77
"engines": {
88
"node": ">= 10"
99
},

0 commit comments

Comments
 (0)