attoae / quill-table-better

A module that enhances the table functionality of Quill.
MIT License
20 stars 4 forks source link

Splitting Cells Works for Only Two Rows #26

Open dustinormond opened 5 days ago

dustinormond commented 5 days ago

When I split a cell that is merged across two rows, it works great; however, when I split a cell that is merged across three or more rows, it shifts all but the first two rows to the left one cell:

Original (dots are merged with columns a, b, and c respectively:

a  b  c  1  2  3
.  .  .  4  5  6
.  .  .  7  8  9

New format after splitting column c (underscore represents an empty cell):

a  b  c  1  2  3
.  .  _  4  5  6
.  .  7  8  9  _

This is what it should look like instead:

a  b  c  1  2  3
.  .  _  4  5  6
.  .  _  7  8  9 
attoae commented 4 days ago

Okay, I will handle this issue.