v7.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.
<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.