CKEditor.replace方法,限制模板转换

时间:2019-11-29 12:20:44

标签: html ckeditor4.x

如何在使用CKeditor.replace()方法时限制HTML代码转换。 HTML标记属性将从模板中删除。

初始模板

<h1 th:text="${hello}">I am routed</h1>
<label>welcome</label>
<p>I am a Paragraph</p>

CKEditor.replace()方法之后的模板转换。

<h1>I am routed</h1>
<p>welcome</p>
<p>I am a Paragraph</p>

模板中的显着更改。
标签已更改,属性已过滤

如何限制上述代码转换?

0 个答案:

没有答案