一、
删除两个空格:
搜索:$nbsp=' ';
改为:$nbsp='';
二、
删除<br>换行符
搜索: $ok='<br>';
找到后改为:$ok='';
或者:
修改编辑器插件,
e/admin/ecmseditor/infoeditor/plugins/autoformat/plugin.js
找到这个文件,然后打开找到:html += "<p> "
去掉<p>后面那两个空格 html += "<p>"
搜索:$nbsp=' ';
改为:$nbsp='';
二、
删除<br>换行符
搜索: $ok='<br>';
找到后改为:$ok='';
修改编辑器插件,
e/admin/ecmseditor/infoeditor/plugins/autoformat/plugin.js
找到这个文件,然后打开找到:html += "<p> "
去掉<p>后面那两个空格 html += "<p>"
暂未验证