Closed vinodsnayvik closed 1 year ago
Hi, I want to insert a link with the title manually. How we can achieve it in editor ?
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});
Hi, I want to insert a link with the title manually. How we can achieve it in editor ?