Fork me on GitHub

Installation


Easiest way to install is via Package Control.

  • Go to Command Palette(Ctrl + Shift + P OR Cmd + Shift + P)
  • Select Package Control : Install Package
  • Search for Github Markdown Snippets

Usage

Tab Trigger Markdown Equivalent Output
i *Italic Text* Italic Text
b **Bold Text** Bold Text
bq > Put a nice, beautiful
> quote here...
Put a nice beautiful quote here...
strike ~~Strike Through~~ Strike Through
h1 # Heading 1

Heading 1

h2 ## Heading 2

Heading 2

h3 ### Heading 3

Heading 3

h4 #### Heading 4

Heading 4

h5 ##### Heading 5
Heading 5
h6 ###### Heading 6
Heading 6
ul - I
- Love
- Markdown
  • I
  • Love
  • Markdown
ol 1. First Item
2. Second Item
3. Third Item
  1. First Item
  2. Second Item
  3. Third Item
code `Inline Code Snippet` Inline Code Snippet
pre ```language
Multi-line Code
```
Multi-line Code
a [Link Title](URL) Link Title
img ![Image Title](Image Source) Image Title
table | Column 1 | Column 2 |
| -------- | -------- |
| Cell 1-1 | Cell 1-2 |
| Cell 2-1 | Cell 2-2 |
Column 1 Column 2
Cell 1-1 Cell 1-2
Cell 2-1 Cell 2-2
hr ---