ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Stick​With​Markdown​Snippets

by unifreak ST3

Still markdown syntax flavored markdown snippets

Details

Installs

  • Total 314
  • Win 153
  • Mac 96
  • Linux 65
May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28
Windows 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 1

Readme

Source
raw.​githubusercontent.​com

Stick with Markdown Snippets

中文请见 这里

We love the simplicity of markdown syntax, but there are a few that are actually complex, like table, code block, and links…

This plugin come to rescue

Though obviously there are other markdown snippets plugins out there, but this plugin try to stick with markdown flavour syntax

Feature

  • Stick with markdown syntax snippets
  • Simplify table, code block, url and image link creation
  • Dynamically add table column and row
  • Configurable code block language alias

Installation

There are two ways to install, the first and recommended way is via Package Control:

  1. Make sure you have Package Control installed, see https://packagecontrol.io/installation
  2. Open Command Pallete, and run Package Control: Install Package
  3. Search for Stick With Markdown Snippets and install

Another way is to clone source from github:

  1. Browse into your sublime text's package folder
  2. Run git clone https://github.com/UniFreak/SublimeMdSnippets.git

Usage

This plugin provide four snippet: table, code block, url link and image link. Just type in trigger then press tab to generate

NOTE: After updating of Markdown Editing, I found that snippet trigger “ doesn't work anymore. To fix this, you can open its user's key binding setting and find these lines and comment out them:

{ "keys": ["`"], "command": "run_macro_file", "args": {"file": "Packages/MarkdownEditing/macros/Skip Closing Character.sublime-macro"}, "context":
 [
     { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
     { "key": "following_text", "operator": "regex_contains", "operand": "^`", "match_all": true },
     { "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
 ]
},

Table

Trigger by: |||

Result in:

|header|header|
|------|------|
|content|content|

More conveniently, you can add table column and table row dynamically:

  • when cursor in last header cell, use tab to add column, use enter to move to table body
  • when cursor in last table body cell, use enter to add row, use tab to tab out the table snippet

This gif will make things clear

table gif

Code Block

Trigger by: ``.

Result in:

```
code

```

You can also specify language alias like ``js, then it will be expand to

```javascript
code

```

You can specify language alias in setting file. Default setting is like this:

{
    "lang_alias": {
        "js": "javascript",
        "py": "python",
        "md": "markdown",
        "rb": "ruby"
    }
}

Image Link

Trigger by: ![

Result in: ![alt text](img path "optional title")

Url Link

Trigger by: [[

Result in: [text](url "optional title")