我的页面上有一个使用CKEditor的HTML编辑器。现在我们决定使用AngularJS创建一些自定义指令,但CKEditor用其他HTML标签替换“未知”标签。
示例:
<custom-table
dataset="Person"
headers = "['Name', 'Email']"
fields = "['name', 'email']">
</custom-table>
替换为:
<p> </p>
我不想渲染该自定义标记。我只是想让CKEditor允许“未知”标签而不改变它。这可能吗?
答案 0 :(得分:1)
如果您在此处参考CK编辑器的文档:http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-extraAllowedContent
它提到extraContentAllowed
选项,让您指定哪些HTML元素有效。