phpcms和织梦cms自带的编辑器都是ckeditor,但是默认情况下,这2个程序中编辑文章时,按下回车键后在源代码显示的是br而非p,对于习惯于换行为p标签的我来说极为不便。
phpcms编辑器ckeditor设置回车换行br为段落p,只需要打开staticsjsckeditorconfig.js
搜索 config.entermode 找到如下代码:
config.entermode = ckeditor.enter_br; config.shiftentermode = ckeditor.enter_p;
只要把br换为p,p换为br或者其它标签就可以。 如果两个都是p的话,会出现错误,出不来编辑框。
补充:织梦cms的配置文件路径为 includeckeditorconfig.js 方法完全相同。