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