imnapo / react-native-cn-quill

Quill rich-text editor for react-native
MIT License
190 stars 75 forks source link

How to insert link custom ? #122

Closed vinodsnayvik closed 1 year ago

vinodsnayvik commented 1 year ago

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

vinodsnayvik commented 1 year 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});