MarkdownComplements
Markdown complements for sublime text 3
Details
Installs
- Total 10K
- Win 5K
- Mac 3K
- Linux 2K
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
Markdown complements
Easy indenting of Markdown lists.
- This plugin provides functions to complement a markdown list item making/changing or indent up/down.
- Need to set Key Bindings only.
- No need to care extensions(.md,.mdown,.txt or something like that).
- Can change list items manually not connected with indent levels.
- Can prevent conflicting with Japanese Input method that selected characters are disappearing.
Sublime Text Version
The plugin requires Sublime Text 3.
Installation
You can clone this repository into your Sublime Text “Packages” folder.
MacOS:
cd ~/"Library/Application Support/Sublime Text 3/Packages"
git clone https://github.com/junShimoji/markdowncomplements.git MarkDownComplements
Windows:
cd "%APPDATA%\"Sublime Text 3\Packages"
git clone https://github.com/junShimoji/markdowncomplements.git MarkDownComplements
Settings
There are 5 plug-ins.
- markdown_indent_down
If the focus line has a list item(*,+ or -), then you can indent down. If the focus line has no list item(*,+ or -), you can add a list item automatically.
- markdown_indent_up
If the line has a list item(*,+ or -), it indent up.
- markdown_new_line
It provides new line with a list item.
- markdown_rotate_list_item
If a list item(*,+ or -) exists, the list item lotates like * -> + -> - * ….
Use as follows.
Open Preferences > Key Bindings and add as follows:
{
"keys": ["ctrl+enter"], "command": "markdown_indent_down",
"context": [{ "key": "selector", "operator": "equal", "operand": "text.html.markdown" }]
},
{ "keys": ["ctrl+shift+enter"], "command": "markdown_indent_up" },
{ "keys": ["command+enter"], "command": "markdown_new_line" },
{ "keys": ["shift+enter"], "command": "markdown_rotate_list_item" }
Above “context” should be added if neceesary.
- outline to table
It provides outline to markdown table.
- To make table header, use list item
+
. - To make table contents, use list item
-
. - Select texts which include headers and contents.
- Open palette and input 'outline to table.'
example
before)
+ header1
+ header2
+ header3
- content1
- content2
- content3
- content4
after)
|header1|header2|header3|
|-|-|-|
|content1|content2|
|content3|content4|