在编辑器trumbowyg中,将div标签替换为p标签

时间:2019-06-24 11:28:56

标签: angular angular6 options trumbowyg

trumbowyg富文本编辑器在每个换行符上添加了p标签,需要用div标签替换p标签。

设置属性“语义”:初始化时为false似乎不起作用

<trumbowyg [initialContent]="resolutionTemplateContent" [options]="options1">
</trumbowyg>

options1 = { removeformatPasted: true,
    semantic : false }

1 个答案:

答案 0 :(得分:0)

您需要篡改cleanpaste.js文件。在该文件中,所有的html标记替换都是在cleanIt函数中完成的。在那里,您可以停止将

标记替换为

相关问题