Hi everybody,
i have developed some new plugins, and i am looking for a simple solution to parse some html-code with the dataprocessor like the method editor.getData().
For Example, i want delete the all the special CKEditor-Attributes like data-cke-saved-href in a part of the editor-data before i save this part in my application. The needed Html is inside of a DIV with id=xy of the current editor content.
Thanks for your help, i didn´t find a solution by myself.
Using dataprocessor to parse some html on event paste
I'm also interested in this answer.
I would like to apply dataprocessor to text pasted into paste event:
ev.editor.on('paste', function(evt) {
evt.data.dataValue= how to apply processor date here? ( evt.data.dataValue );
}
});