How to make tinymce paste in plain text by default

后端 未结 11 1005
忘掉有多难
忘掉有多难 2020-12-02 04:24

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 \"pas

11条回答
  •  天命终不由人
    2020-12-02 05:28

    I have solved this problem with this code

    tinyMCE.init({
    ...
    plugins : "paste",
    paste_text_sticky : true,
    setup : function(ed) {
        ed.onInit.add(function(ed) {
          ed.pasteAsPlainText = true;
        });
      }
    ....
    })
    

提交回复
热议问题