table icon indicating copy to clipboard operation
table copied to clipboard

add ability of paste from word table or html table

Open kooky126 opened this issue 3 years ago • 0 comments

can paste from word table or html table


colspan cell will holder by "<" rowspan cell will holder by "^"

editor.js cut all table node data in paste(such as tr td )

so need modify

editor.js\src\components\modules\paste.ts need add a line in 555

555 content.innerHTML = clean(content.innerHTML, customConfig); to 555 if(!(/

/i.test(content.innerHTML))) 556 content.innerHTML = clean(content.innerHTML, customConfig);

kooky126 avatar Nov 02 '21 05:11 kooky126