markdownlint icon indicating copy to clipboard operation
markdownlint copied to clipboard

Table style consistency check

Open lloeki opened this issue 6 years ago • 1 comments

It would be nice to be able to enforce table style consistency:

| foo | bar |
|-----|-----|
| 123 | 456 |

vs

| foo | bar
|-----|----
| 123 | 456

vs

foo | bar
----|----
123 | 456

Style could be detected as being inconsistent from first occurence, or globally enforced as a setting.

lloeki avatar Nov 03 '17 12:11 lloeki

Something like https://github.com/remarkjs/remark-lint/tree/master/packages/remark-lint-table-cell-padding would indeed be nice

StanzillaManticore avatar Dec 13 '19 04:12 StanzillaManticore