You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when editing an existing table, changing row changes indentation/alignment, is there a reason for that? I find it a bit disturbing. I can understand that adding/changing a cell content to something would change alignment but in this case nothing is changed.
The text was updated successfully, but these errors were encountered:
Thank you for using the tool! Just to confirm, are you referring to examples like the following?
| abc | def |
| --- | ------- |
| bar | baz |
| bar | baz |
When using mdtt, even if the first line isn’t changed, it ends up looking like this:
| abc | def |
| --- | --- |
| bar | baz |
| bar | baz |
The reason this happens is that mdtt reformats the entire table for consistency whenever any row is edited, regardless of whether other rows are modified. Additionally, due to GitHub Flavored Markdown (GFM) specifications, spaces within table cells are trimmed, causing the formatting to disregard extra spaces and align cells automatically.
HI, nice job.
when editing an existing table, changing row changes indentation/alignment, is there a reason for that? I find it a bit disturbing. I can understand that adding/changing a cell content to something would change alignment but in this case nothing is changed.
The text was updated successfully, but these errors were encountered: