Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/praveenpuglia/github_markdown_snippets
GitHub flavored Markdown with plain'ol HTML knowledge! Boom!
https://github.com/praveenpuglia/github_markdown_snippets
github-flavored-markdown markdown-snippets snippets sublime-text sublime-text-3
Last synced: 12 days ago
JSON representation
GitHub flavored Markdown with plain'ol HTML knowledge! Boom!
- Host: GitHub
- URL: https://github.com/praveenpuglia/github_markdown_snippets
- Owner: praveenpuglia
- Created: 2015-06-18T08:01:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-17T04:59:23.000Z (over 7 years ago)
- Last Synced: 2024-05-02T01:07:19.363Z (8 months ago)
- Topics: github-flavored-markdown, markdown-snippets, snippets, sublime-text, sublime-text-3
- Homepage: http://praveenpuglia.github.io/github_markdown_snippets/
- Size: 19.5 KB
- Stars: 25
- Watchers: 3
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Markdown Snippets
Helpful Sublime Text snippets to get you started with GitHub flavored Markdown by letting you type the plain old HTML tags.## Installation
### Via Package Control
The easiest way is to install it via [Package Control](https://packagecontrol.io/).- Go to **Command Palette** Ctrl + Shift + P or ⌘ + Shift + P
- Select **Package Control : Install Package**
- Search for **Github Markdown Snippets**### Manual
- Clone the repository or download the [ZIP](https://github.com/praveenpuglia/github-markdown-snippets/archive/master.zip)
- Extract the archive
- Put it in your **Packages**( `Preferences > Browse Packages...` ) directory.### Using with Emmet
If you have Emmet installed, tab triggers may not function as expected due to [this](https://github.com/sergeche/emmet-sublime#tab-key-handler).To get around the problem, go to
```
Preferences > Package Settings > Emmet > User Settings
```
and add the following in your settings file.```
{
"disable_tab_abbreviations_for_scopes": "text.html.markdown"
}
```This should let markdown snippets take precedence over emmet's tab to expand abbreviations feature and provide correct snippets.
Note that any tab trigger not set by this plugin will be converted to HTML tags which is convenient for people
who want to use HTML tags inside Markdown files.## Usage
A consolidated guide is available [here](http://praveenpuglia.github.io/github_markdown_snippets).Type a tag name and hit tab. That's it! :relaxed:
:snowflake: Long tags like `blockquote` are shortened for power use.
## List of Tab Triggers
```
h1 // Heading 1
h2 // Heading 2
h3 // Heading 3
h4 // Heading 4
h5 // Heading 5
h6 // Heading 6
```
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
```
b // Bold
i // Italic
bq // Blockquote
strike // Strikeout
hr // Horizontal Rule, Divider
```
**Bold Text***Italic Text*
> Put a nice, beautiful
> quote here...~~Strike Through~~
---
```
code // Inline Code
pre // Code Block with language based highlighting.
```
`Inline Code Snippet````javascript
var message = "Code Block";
alert( message );
``````
a // Anchor
img // Image
```
[Link Title](Link)![Puppies are cute](https://c1.staticflickr.com/5/4112/5170590074_714d36db83_b.jpg)
```
ol // Ordered List
ul // Unordered List
table // Table
```1. First Item
2. Second Item
3. Third Item- I
- Love
- Markdown| Column 1 | Column 2 |
| ------------- | ------------- |
| Cell 1-1 | Cell 1-2 |
| Cell 2-1 | Cell 2-2 |