summernote / react-summernote

Summernote (Super simple WYSIWYG editor) adaptation for react
http://summernote.org
MIT License
230 stars 108 forks source link

insertText at the last caret position #123

Open Borovensky opened 9 months ago

Borovensky commented 9 months ago

There are static methods insertText and insertNode. Is it possible to insertText or insertNode at the caret position?

I do the next: const onInsertText = text => { ReactSummernote.insertText(text); }; And it always insert text and the beginning. And I can't figure out how to insert it at the last caret position.