Markdown Table Formatter
Sublime Text 3 plugin for formatting markdown table (inspired by Atom's MarkdownTableFormatter)
Details
Installs
- Total 16K
- Win 6K
- Mac 6K
- Linux 3K
Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 3 | 2 | 1 | 0 | 2 | 0 | 1 | 3 | 0 | 5 | 0 | 0 | 1 | 2 | 1 | 3 | 0 | 3 | 2 | 1 | 0 | 1 | 0 | 4 | 0 | 1 | 0 | 1 | 1 | 2 | 1 | 0 | 0 | 0 | 2 | 3 |
Mac | 0 | 0 | 4 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 2 | 1 | 0 | 2 | 0 | 3 | 2 | 0 | 0 | 2 | 2 | 0 | 3 | 1 | 0 | 2 | 3 | 5 | 0 | 2 | 1 | 2 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 2 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 3 | 0 | 1 | 0 | 1 | 0 | 0 | 2 | 3 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 2 | 1 | 2 | 0 | 0 | 3 | 2 |
Readme
- Source
- raw.githubusercontent.com
Markdown Table Formatter
Sublime Text 3 markdown plugin that offers table formatting.
Inspired by the Atom's version from fcrespo82 (Fernando).
markdowntableformatter[at]gmail[.]com
Usage
There are two basic ways of using this plugin. Select what you want to format and hit Ctrl+Alt+Shift+T or use the same shortcut without selection to format the entire document.
Configuration
{
// make plugin verbose in debug console
"verbose": false,
// scan document to format tables when saving
"autoformat_on_save": false,
// spaces between "|" and cell's text
"margin": 1,
// additional spaces before/after cell's text (depending on justification)
"padding": 0,
// how text should be justified when not specified [LEFT, RIGHT, CENTER]
"default_justification": "LEFT"
}
Proper formatting
To be recognised properly by the plugin, Markdown tables must not contain white space in the line that separate the table heading from the other table rows.
For example, the following works:
Error: language “md” is not supported
|:------------------|:---------------------|:-----------------|
This example will not work:
Error: language “md” is not supported
|:------------------| ---------------------|:-----------------|