Skip to content

Instantly share code, notes, and snippets.

@GeorgeHernandez
Last active February 24, 2020 21:27
Show Gist options
  • Save GeorgeHernandez/76db904eef44d8913f7b09767fd68b04 to your computer and use it in GitHub Desktop.
Save GeorgeHernandez/76db904eef44d8913f7b09767fd68b04 to your computer and use it in GitHub Desktop.
Some of my Visual Studio Code snippets
{
"HTML Skeleton": {
"prefix": "skeleton",
"body":[
"<!DOCTYPE html>",
"<html lang=\"en\">",
"<head>",
" <meta charset=\"utf-8\">",
" <title>$1</title>",
"</head>",
"<body>",
"<h1>$1</h1>",
"</body>"
],
"description": "The skeleton of an HTML file"
},
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1: ' + $1)"
],
"description": "Log output to console"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment