Answer the question
In order to leave comments, you need to log in
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
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 questionAsk a Question
731 491 924 answers to any question