在CKeditor 4的某些标签上列出html5数据*

时间:2013-07-18 20:20:46

标签: javascript html ckeditor wysiwyg fckeditor

我一直试图找到一种方法来将数据*限制为ckeditor4中的某些标签。截至目前,我无法将其设置在任何标签上,因为它只是立即剥离它们。

我已经尝试将其添加到whitelist plugin这样的内容(编辑插件文件以添加/删除它们):

  CKEDITOR.config.whitelist_elements = {
    a: { attributes: {href:1, rel:1, title:1, data-*:1} }
  );

我也尝试过使用allowedContent

  CKEDITOR.replace( 'editor1', {
    allowedContent: 'a[!href,rel,title,data-*]'
  });

我做错了,还是有其他方法可以做到这一点?

谢谢。

0 个答案:

没有答案