From ada1fad545ebc3c7d2e8635541e7d26b49e3de87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 01:26:57 -0500 Subject: [PATCH] Version Packages (#617) Co-authored-by: github-actions[bot] --- .changeset/large-beds-pump.md | 5 ----- .changeset/wicked-radios-tap.md | 26 -------------------------- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ package.json | 2 +- 4 files changed, 32 insertions(+), 32 deletions(-) delete mode 100644 .changeset/large-beds-pump.md delete mode 100644 .changeset/wicked-radios-tap.md diff --git a/.changeset/large-beds-pump.md b/.changeset/large-beds-pump.md deleted file mode 100644 index 6eef7d2a..00000000 --- a/.changeset/large-beds-pump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'markdown-to-jsx': patch ---- - -Simplify handling of fallback scenario if a link reference is missing its corresponding footnote. diff --git a/.changeset/wicked-radios-tap.md b/.changeset/wicked-radios-tap.md deleted file mode 100644 index 5d501f68..00000000 --- a/.changeset/wicked-radios-tap.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -'markdown-to-jsx': minor ---- - -Add `options.disableAutoLink` to customize bare URL handling behavior. - -By default, bare URLs in the markdown document will be converted into an anchor tag. This behavior can be disabled if desired. - -```jsx - - The URL https://quantizor.dev will not be rendered as an anchor tag. - - -// or - -compiler( - 'The URL https://quantizor.dev will not be rendered as an anchor tag.', - { disableAutoLink: true } -) - -// renders: - - - The URL https://quantizor.dev will not be rendered as an anchor tag. - -``` diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ad7a6ca..7427d1e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # markdown-to-jsx +## 7.6.0 + +### Minor Changes + +- 2281a4d: Add `options.disableAutoLink` to customize bare URL handling behavior. + + By default, bare URLs in the markdown document will be converted into an anchor tag. This behavior can be disabled if desired. + + ```jsx + + The URL https://quantizor.dev will not be rendered as an anchor tag. + + + // or + + compiler( + 'The URL https://quantizor.dev will not be rendered as an anchor tag.', + { disableAutoLink: true } + ) + + // renders: + + + The URL https://quantizor.dev will not be rendered as an anchor tag. + + ``` + +### Patch Changes + +- fb3d716: Simplify handling of fallback scenario if a link reference is missing its corresponding footnote. + ## 7.5.1 ### Patch Changes diff --git a/package.json b/package.json index e4db9e14..3c25bd99 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.5.1", + "version": "7.6.0", "publishConfig": { "access": "public" },