notadd / neditor

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

缩进与行高问题,已经重新配图详细说明问题,麻烦有空查看和修复,谢谢! #89

Closed jackyGang closed 5 years ago

jackyGang commented 5 years ago

paragraph.js文件中的domUtils.remove(para.parentNode, true);改为domUtils.remove(para, true); //trace:1706 选择的就是h1-6要删除 if ( attrs && /h\d/i.test(parent.tagName) && !/h\d/i.test(para.tagName) ) { domUtils.setAttributes(parent, attrs); if ( sourceCmdName && sourceCmdName == "customstyle" && attrs.style ) { parent.style.cssText = attrs.style; } domUtils.remove(para, true); para = parent; } else { domUtils.remove(para.parentNode, true); } }

zuohuadong commented 5 years ago

方便提交个PR 么