imnapo / react-native-cn-quill

Quill rich-text editor for react-native
MIT License
185 stars 72 forks source link

How to insert link custom ? #122

Closed vinodsnayvik closed 11 months ago

vinodsnayvik commented 11 months ago

Hi, I want to insert a link with the title manually. How we can achieve it in editor ?

vinodsnayvik commented 11 months ago

Before i was trying editorRef?.current?.insertText(range.index, title, 'link', link);

but the correct way is : editorRef?.current?.insertText(range.index, title, {'link': link});