How to make tinymce paste in plain text by default

Ryan picture Ryan · Apr 23, 2010 · Viewed 81.4k times · Source

Googled it thousands of times, No one gives a complete solution of how to make Tinymce paste in plain text by default and strip out any formatting without clicking the "paste as text" button.

Any Ideas of how to implement that? or how to enable the "paste as text" button automatically?

Thank you

Answer

Paulo Almeida picture Paulo Almeida · Jul 2, 2013

For the tinyMCE 3X or 4X things have change a little. now you can do this and it works fine.

tinymce.init({
    plugins: "paste",
    paste_as_text: true
});