Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Created June 11, 2016 00:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielschmitz/3bbce255af4a88a39eb1e21223c42887 to your computer and use it in GitHub Desktop.
Save danielschmitz/3bbce255af4a88a39eb1e21223c42887 to your computer and use it in GitHub Desktop.
{
/*
// Place your snippets for Markdown here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, ${id} and ${id:label} and ${1:label} for variables. Variables with the same id are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
*/
"Html Code": {
"prefix": "!html",
"body": "```html\n$1\n```",
"description": "Adiciona script html"
},
"JS Code": {
"prefix": "!js",
"body": "```js\n$1\n```",
"description": "Adiciona script js"
},
"Leanpub start insert": {
"prefix": "!start",
"body": " #leanpub-start-insert",
"description": "Adiciona start insert"
},
"Leanpub end insert": {
"prefix": "!end",
"body": " #leanpub-end-insert",
"description": "Adiciona end insert"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment