Turn off enclosing

tags in CKEditor 3.0

前端 未结 11 994
天涯浪人
天涯浪人 2020-12-04 07:49

Is there a possibility to turn off the automatic enclosing of all written content within

in CKEditor 3.x?

I tried

  CKEDITOR.con         


        
11条回答
  •  温柔的废话
    2020-12-04 08:03

    Found it!

    ckeditor.js line #91 ... search for

    B.config.enterMode==3?'div':'p'

    change to

    B.config.enterMode==3?'div':'' (NO P!)

    Dump your cache and BAM!

提交回复
热议问题