Antisamy-tinymce删除<img/>标签

时间:2016-05-12 11:07:07

标签: html tinymce antisamy

我正在传递一张下面有html的图片: -

<p>tag img src="http://some image url link" alt="N2QWv.png (512&times;512)" /></p>

虽然我没有在删除标记中提供,但我的标记已被删除。

我不希望我的标签被删除。请任何可以提供帮助的人

1 个答案:

答案 0 :(得分:1)

在您的政策文件中提供以下内容: -

<tag name="img" action="validate">
    <attribute name="src" /> 
    <attribute name="style" />
    <attribute name="title" />
    <attribute name="alt" />
</tag>

<attribute name="alt" description="The 'alt' attribute provides alternative text to users when its visual representation is not available">
    <regexp-list>
        <regexp name="paragraph" />
    </regexp-list>
</attribute>

在全局属性标记中添加: -

<attribute name="src" />