fix: Disable fuzzy links in markdown editor

Closes #1480
This commit is contained in:
Maksim Eltyshev
2026-01-14 13:00:29 +01:00
parent e1c1719414
commit e3e55b2c26
4 changed files with 35 additions and 0 deletions
@@ -18,6 +18,7 @@ const Markdown = React.memo(({ children }) => {
plugins,
breaks: true,
linkify: true,
linkifyTlds: null,
sanitizeOptions: {
...defaultSanitizeOptions,
allowedSchemesByTag: { img: ['http', 'https', 'data'] },
@@ -80,6 +80,7 @@ const MarkdownEditor = React.forwardRef(
md: {
breaks: true,
linkify: true,
linkifyTlds: null,
},
handlers: {
uploadFile: fileUploadHandler,