mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
22 lines
No EOL
577 B
JSON
22 lines
No EOL
577 B
JSON
{
|
|
"HTML template": {
|
|
"prefix": "html",
|
|
"body": [
|
|
"<!DOCTYPE html>",
|
|
"<html>",
|
|
"<head>",
|
|
" <meta charset=\"utf-8\" />",
|
|
" <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">",
|
|
" <title>{{Page Title}}</title>",
|
|
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">",
|
|
" <link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"{{main.css}}\" />",
|
|
" <script src=\"{{main.js}}\"></script>",
|
|
"</head>",
|
|
"<body>",
|
|
" {{}}",
|
|
"</body>",
|
|
"</html>"
|
|
],
|
|
"description": "Simple HTML5 starting point"
|
|
}
|
|
} |