如何从ckeditor5中删除自动段落。
例如。
input => "this is body" 在文本区域
输出 => <p>this is body</p>
ClassicEditor.create(document.querySelector("#editor"), {
autoParagraph: false,
enterMode: 2
})
.then((newEditor) => {
editor = newEditor;
})
.catch((error) => {
console.error(error);
});
我试图禁用 autoParagraph 和 enterMode