有没有一种方法可以在CkEditor 4中使用添加类属性创建自己的HTML模板?
CKEDITOR.addTemplates( 'default',
{
templates :
[
{
title: 'My template',
image: 'my-template.PNG',
description: 'Your custom template.',
html: '<div class="this-class-to-remove">Hello world!</div>'
},
]
});
插入模板时,将删除HTML类(要删除的类)属性。 Not ok
插入CkEditor后如何维护HTML类? The desired result