diff --git a/.changeset/fifty-pumpkins-flash.md b/.changeset/fifty-pumpkins-flash.md deleted file mode 100644 index 54b3401f..00000000 --- a/.changeset/fifty-pumpkins-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'markdown-to-jsx': patch ---- - -Adjust type signature for `` component to allow for easier composition. diff --git a/.changeset/shaggy-ants-collect.md b/.changeset/shaggy-ants-collect.md deleted file mode 100644 index d64b91b6..00000000 --- a/.changeset/shaggy-ants-collect.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'markdown-to-jsx': minor ---- - -Add support for GFM alert-style blockquotes. - -```md -> [!Note] -> This is a note-flavored alert blockquote. The "Note" text is injected as a `
` by -> default and the blockquote can be styled via the injected class `markdown-alert-note` -> for example. -``` diff --git a/.changeset/strange-ghosts-kiss.md b/.changeset/strange-ghosts-kiss.md deleted file mode 100644 index 0d2e5cfc..00000000 --- a/.changeset/strange-ghosts-kiss.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'markdown-to-jsx': patch ---- - -Use newer `React.JSX.*` namespace instead of `JSX.*` for React 19 compatibility. diff --git a/.changeset/tidy-cheetahs-count.md b/.changeset/tidy-cheetahs-count.md deleted file mode 100644 index 63c58997..00000000 --- a/.changeset/tidy-cheetahs-count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'markdown-to-jsx': patch ---- - -Arbitrary HTML no longer punches out pipes when parsing rows. If you absolutely need a pipe character that isn't a table separator, either escape it or enclose it in backticks to trigger inline code handling. diff --git a/.changeset/tricky-cups-relate.md b/.changeset/tricky-cups-relate.md deleted file mode 100644 index 0ba1f814..00000000 --- a/.changeset/tricky-cups-relate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'markdown-to-jsx': patch ---- - -Drop encountered `ref` attributes when processing inline HTML, React doesn't handle it well. diff --git a/.yarn/cache/@esbuild-linux-x64-npm-0.19.11-2afe281ab0-10.zip b/.yarn/cache/@esbuild-linux-x64-npm-0.19.11-2afe281ab0-10.zip new file mode 100644 index 00000000..1937416d Binary files /dev/null and b/.yarn/cache/@esbuild-linux-x64-npm-0.19.11-2afe281ab0-10.zip differ diff --git a/CHANGELOG.md b/CHANGELOG.md index cdff4c21..9b117381 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # markdown-to-jsx +## 7.7.0 + +### Minor Changes + +- 20777bf: Add support for GFM alert-style blockquotes. + + ```md + > [!Note] + > This is a note-flavored alert blockquote. The "Note" text is injected as a `
` by + > default and the blockquote can be styled via the injected class `markdown-alert-note` + > for example. + ``` + +### Patch Changes + +- 5d7900b: Adjust type signature for `` component to allow for easier composition. +- 918b44b: Use newer `React.JSX.*` namespace instead of `JSX.*` for React 19 compatibility. +- 91a5948: Arbitrary HTML no longer punches out pipes when parsing rows. If you absolutely need a pipe character that isn't a table separator, either escape it or enclose it in backticks to trigger inline code handling. +- 23caecb: Drop encountered `ref` attributes when processing inline HTML, React doesn't handle it well. + ## 7.6.2 ### Patch Changes diff --git a/package.json b/package.json index d793eb3e..69e8a7f7 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.6.2", + "version": "7.7.0", "publishConfig": { "access": "public" },