当我通过ckeditor输入save html时,我会错过html内容中的标记。是否有任何ckeditor配置我必须做什么来允许html标签,如内部的HTML内容?感谢。
答案 0 :(得分:1)
在实例化ckeditor以允许特定标记时必须使用allowedContent属性,或 allowedContent:true 允许所有内容
https://docs.ckeditor.com/ckeditor4/latest/api/CKEDITOR_config.html#cfg-allowedContent
使用config.js或指定textarea的页内配置:
https://docs.ckeditor.com/ckeditor4/latest/guide/dev_configuration.html
就我而言(我使用的是Symfony ckeditor软件包)我也可以通过config.yml中的bundle配置来设置它。