Skip to content

Commit

Permalink
Version Packages (#617)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Nov 12, 2024
1 parent 2281a4d commit ada1fad
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 32 deletions.
5 changes: 0 additions & 5 deletions .changeset/large-beds-pump.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/wicked-radios-tap.md

This file was deleted.

31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
<Markdown options={{ disableAutoLink: true }}>
The URL https://quantizor.dev will not be rendered as an anchor tag.
</Markdown>

// or

compiler(
'The URL https://quantizor.dev will not be rendered as an anchor tag.',
{ disableAutoLink: true }
)

// renders:

<span>
The URL https://quantizor.dev will not be rendered as an anchor tag.
</span>
```

### Patch Changes

- fb3d716: Simplify handling of fallback scenario if a link reference is missing its corresponding footnote.

## 7.5.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit ada1fad

Please sign in to comment.