Markdown Table Creator
A Sublime Text plugin to create and reformat Markdown tables
Labels markdown
Details
Installs
- Total 2K
- Win 702
- Mac 603
- Linux 306
Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 1 | 0 | 2 | 1 | 2 | 1 | 0 | 0 | 0 | 3 | 3 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 1 | 0 | 4 | 1 | 1 | 3 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 |
Mac | 0 | 0 | 1 | 2 | 1 | 0 | 1 | 0 | 1 | 0 | 2 | 1 | 2 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 3 | 0 | 1 | 0 | 0 | 2 | 1 | 1 | 0 | 0 | 2 | 2 | 1 | 2 | 1 | 0 | 0 | 0 | 3 | 1 | 1 | 0 | 3 | 0 | 3 |
Linux | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 2 | 2 | 1 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 1 | 1 |
Readme
- Source
- raw.githubusercontent.com
Markdown Table Creator
Markdown Table Creator is a Sublime Text plugin that helps you create and reformat Markdown tables quickly.
Demo video:
https://user-images.githubusercontent.com/1588495/202923784-16f5d2a0-920d-4dbc-a58a-0a2861f8eceb.mov
Table of Contents
Installation
via Package Control
- Open the Command Palette (
Tools > Command Palette
) - Search for
Package Control: Install Package
and select it - Search for
Markdown Table Creator
and select it to install
https://packagecontrol.io/packages/Markdown%20Table%20Creator
Manual Installation
- Open Sublime Text package directory with
Sublime Text > Preferences > Browse Packages...
. - Copy the files to
User
directory.
Usage
Create Markdown table
- Type 1+ header names, separated with
|
(or configuredextra_header_separators
) - Type content data, separated with
|
(or configuredextra_content_separators
) (optional) - Select the text you want to convert to Markdown table
- Select
Markdown Table Creator
from Command Palette, or hit the defined key binding
Reformat Markdown table
- Make any change in header/content data, alignment, or table structure
- Select the Markdown table
- Select
Markdown Table Creator
from Command Palette, or hit the defined key binding
Examples
▶ Only header information
Before
City|Country|Population
After
City | Country | Population |
---|
▶ If you defined \
as separator in extra_header_separators
such as "extra_header_separators": "\\"
Before
City\Country\Population
After
City | Country | Population |
---|
▶ You can also enter the data alongside the header
Before
City\Country\Population
London|UK|8M
Istanbul|Turkey|12M
After
City | Country | Population |
---|---|---|
London | UK | 8M |
Istanbul | Turkey | 12M |
▶ You can define the column alignment by putting :
to the header
Before
City (Default Left)|:Country (Centered):|Population (Right):
London|UK|8M
Istanbul|Turkey|12M
After
City (Default Left) | Country (Centered) | Population (Right) |
---|---|---|
London | UK | 8M |
Istanbul | Turkey | 12M |
Configuration
Keymap
You can add a keymap with
Sublime Text > Preferences > Key Bindings
Example:
{ "keys": ["alt+shift+t"], "command": "markdown_table_creator" }
Customization
{
// This will be used to align the column when alignment is not specified with ":"
// Can be "left" / "right" / "center"
"default_alignment": "left",
// Each of the characters will be used to separate header line together with "|"
"extra_header_separators": "",
// Each of the characters will be used to separate content lines together with "|"
"extra_content_separators": "",
// Enabling debug_mode will print errors after the selected text
"debug_mode": false,
}