D
D
DragoN DragoN2018-07-27 09:54:32
JavaScript
DragoN DragoN, 2018-07-27 09:54:32

How to replace all with when pasted in TinyMCE 4 editor?

How to make hyphens always P and never BR when pasting text in TinyMCE editor

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
DragoN DragoN, 2018-08-02
@DrDragoN

In general, I did this, tags are processed in the clipboard before text is pasted

tinymce.init(
{
...
setup: function ( editor ) {
    editor.on(
                    'PastePreProcess',
                     function (e) {
                                             e.content = e.content.replace( /<br>/g, '<p>' );
                                             ...
                     }
    );
 },
 ...
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question