MarkdownTableFormatter icon indicating copy to clipboard operation
MarkdownTableFormatter copied to clipboard

Allow unspecified justification

Open FranklinYu opened this issue 6 years ago • 0 comments

This is a feature request.

Currently if I had

| abc | def function |
|---|---|
| d | |

It would add default_justification to each column making it

| abc | def function |
|:----|:-------------|
| d   |              |

It would be awesome if we can specify

{
  "default_justification": null
}

so that it doesn’t add justification to any column.

FranklinYu avatar Apr 10 '19 13:04 FranklinYu