notadd / neditor

基于 ueditor的更现代化的富文本编辑器,支持HTTPS
https://demo.neditor.notadd.com/
MIT License
1.91k stars 267 forks source link

图片设置浮动会被过滤 #108

Closed Zclhlmgqzc closed 5 years ago

Zclhlmgqzc commented 5 years ago

选择图片选择浮动

<p><img src="https://www.notadd.com/src/neditor-demo.webp" _src="https://www.notadd.com/src/neditor-demo.webp" width="317" height="292" style="width: 317px; height: 292px; float: left;">test</p>

点击 html 按钮之后变成

<p>
    <img src="https://www.notadd.com/src/neditor-demo.webp" width="317" height="292"/>test
</p>

建议在配置里加上 style

whitList: [
...
img: ['src', 'alt', 'title', 'width', 'height', 'id', '_src', '_url', 'loadingclass', 'class', 'data-latex'],
=>
img: ['style', 'src', 'alt', 'title', 'width', 'height', 'id', '_src', '_url', 'loadingclass', 'class', 'data-latex'],
zuohuadong commented 5 years ago

欢迎提交PR

Zclhlmgqzc commented 5 years ago

@zuohuadong #109

zuohuadong commented 5 years ago

感谢