我在Laravel前端项目中使用CKEditor。我真的需要强制CKEditor,忘记段落。我的意思是,只有当用户直接点击段落按钮时,我才真正需要在那里自动删除。这可能吗?
答案 0 :(得分:0)
这取决于CKEDITOR版本,您可以尝试:
CKEDITOR.config.autoParagraph = false;
或
config.enterMode = CKEDITOR.ENTER_BR; //插入<br />
一个有趣的答案
How to configure ckeditor to not wrap content in <p> block?
并链接到配置文档 https://docs.ckeditor.com/ckeditor4/latest/api/CKEDITOR_config.html#cfg-autoParagraph