vscode-table-formatter icon indicating copy to clipboard operation
vscode-table-formatter copied to clipboard

[TEXTILE] Add Support for row and column span

Open SnowMB opened this issue 5 years ago • 1 comments

When having a table with a row or column span, formatting adds empty cells and treats the span definition as content of the cell:

|_. A |_. B |_. C |_. D |_. E |
| content | content | content | content | content |
|\5. rowspan |
| content | content | content | content | content |

gets formatted to:

|_.      A      |_.    B    |_.    C    |_.    D    |_.    E    |
|   content     |   content |   content |   content |   content |
|   \5. rowspan |           |           |           |           |
|   content     |   content |   content |   content |   content |

SnowMB avatar Jan 20 '20 14:01 SnowMB