Hi !
I switched from jquery-textcomplete to the new version but I can no longer paste html content in my contenteditable div, it is automatically escaped.
How can I solve my problem ?
I guess the problem is in the ContenteditableEditor file (applySearchResult method) with insertText
this.el.ownerDocument.execCommand(
"insertText",
false,
replace[0] + replace[1]
)
Hi !
I switched from jquery-textcomplete to the new version but I can no longer paste html content in my contenteditable div, it is automatically escaped.
How can I solve my problem ?
I guess the problem is in the
ContenteditableEditorfile (applySearchResultmethod) with insertText