在CKEditor中,您可以通过配置config.removePlugins
属性来移除不需要的插件,从而实现不包含<p>
块中的内容。以下是一个简单的示例:
CKEDITOR.replace('editor1', {
removePlugins: 'elementspath,resize',
allowedContent: {
'*': {
'*': '*',
'style': '*',
'class': '*',
'id': '*',
'data-*': '*',
'aria-*': '*',
'role': '*'
}
},
on: {
instanceReady: function(evt) {
evt.editor.dataProcessor.writer.sortAttributes = 1;
evt.editor.dataProcessor.writer.selfClosingEnd = '>';
}
}
});
在这个示例中,我们移除了elementspath
和resize
插件。您可以根据需要添加或删除其他插件。
</textarea>
这样,CKEditor将不再包含<p>
块中的内容。
推荐的腾讯云相关产品:
产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云