From 01cebca4a02ac7f34abb94d45fd41495803f2e5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 16:05:25 -0400 Subject: [PATCH] Version Packages (#562) Co-authored-by: github-actions[bot] --- .changeset/strange-planets-buy.md | 28 ---------------------------- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 30 insertions(+), 29 deletions(-) delete mode 100644 .changeset/strange-planets-buy.md diff --git a/.changeset/strange-planets-buy.md b/.changeset/strange-planets-buy.md deleted file mode 100644 index 62dfd1cb..00000000 --- a/.changeset/strange-planets-buy.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -"markdown-to-jsx": patch ---- - -fix: double newline between consecutive blockquote syntax creates separate blockquotes - -Previously, for consecutive blockquotes they were rendered as one: - -**Input** - -```md -> Block A.1 -> Block A.2 - -> Block B.1 -``` - -**Output** - -```html -
-

Block A.1

-

Block A.2

-

Block.B.1

-
-``` - -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. diff --git a/CHANGELOG.md b/CHANGELOG.md index 00cf5160..87a0ed65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # markdown-to-jsx +## 7.4.5 + +### Patch Changes + +- f5a0079: fix: double newline between consecutive blockquote syntax creates separate blockquotes + + Previously, for consecutive blockquotes they were rendered as one: + + **Input** + + ```md + > Block A.1 + > Block A.2 + + > Block B.1 + ``` + + **Output** + + ```html +
+

Block A.1

+

Block A.2

+

Block.B.1

+
+ ``` + + 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. + ## 7.4.4 ### Patch Changes diff --git a/package.json b/package.json index 95a7bfd0..1f8cfff1 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Convert markdown to JSX with ease for React and React-like projects. Super lightweight and highly configurable.", "homepage": "https://markdown-to-jsx.quantizor.dev", "license": "MIT", - "version": "7.4.4", + "version": "7.4.5", "engines": { "node": ">= 10" },