pl-fe: handle autolink in remark

Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk
2025-03-09 18:48:03 +01:00
parent 0752f8df4e
commit 994bc8bb39

View File

@ -170,6 +170,7 @@ const ComposeEditor = React.forwardRef<LexicalEditor, IComposeEditor>(({
handlers: {
hashtag: (node) => ({ type: 'text', value: node.getTextContent() }),
mention: (node) => ({ type: 'text', value: node.getTextContent() }),
autolink: (node) => ({ type: 'text', value: node.getTextContent() }),
},
})));
}