MarkdownTableFormatter icon indicating copy to clipboard operation
MarkdownTableFormatter copied to clipboard

Sublime Text 3 plugin for formatting markdown table (inspired by Atom's MarkdownTableFormatter)

Results 10 MarkdownTableFormatter issues
Sort by recently updated
recently updated
newest added

Add support for variable last column widths in Markdown tables. Often the last column in a Markdown table is the widest, and adding new rows with long pieces of text...

At the moment, MarkdownTableFormatter formats Markdown tables so that the final or right-most column is as wide as the widest content. Having configurable options for the cells in the right-most...

Before #Header ......|........| ......| :----| ......| :----| After MarkdownTableFormatter Become #Header *| ....... | *| :----| *| :----| Can you please add option to save identation of table. Thanks

Need to be configured as a monospaced font [Ubuntu Mono](https://fonts.google.com/download?family=Ubuntu%20Mono): Preferences.sublime-settings - User ```json { "font_face": "Ubuntu Mono", "font_size": 14 } ``` It was like this before the change: After...

This is a feature request. Currently if I had ```markdown | abc | def function | |---|---| | d | | ``` It would add `default_justification` to each column making...

like ```markdown | 业务方向 | 线人 | |:----------|:-----------| | 运营后台 - 销售 | 雪、鹏、丽 | | 智能商业部 | 瑞 | ```

One Chinese char should be counted as 2 ascii char.

When running the `format table` command on the whole document, the cursor location moves to the start of the first table. Ideally, the cursor would not move from its original...

Tables with pipe symbols `|` inside code/emphasis/escaped get formatted incorrectly: ``` a|b -|- `|`|foo \\|bar ``` **Expected** formatting: ``` | a | b | |:----|:----| | `|` | foo |...