mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
37 lines
837 B
JSON
37 lines
837 B
JSON
{
|
|
"HTML template": {
|
|
"prefix": "html",
|
|
"body": [
|
|
"<!DOCTYPE html>",
|
|
"<html>",
|
|
"<head>",
|
|
"\t<meta charset=\"utf-8\" />",
|
|
"\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">",
|
|
"\t<title>{{Page Title}}</title>",
|
|
"\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">",
|
|
"\t<link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"{{main.css}}\" />",
|
|
"\t<script src=\"{{main.js}}\"></script>",
|
|
"</head>",
|
|
"<body>",
|
|
"\t{{}}",
|
|
"</body>",
|
|
"</html>"
|
|
],
|
|
"description": "Simple HTML5 starting point"
|
|
},
|
|
"Region Start": {
|
|
"prefix": "#region",
|
|
"body": [
|
|
"<!-- #region -->"
|
|
],
|
|
"description": "Folding Region Start"
|
|
},
|
|
"Region End": {
|
|
"prefix": "#endregion",
|
|
"body": [
|
|
"<!-- #endregion -->"
|
|
],
|
|
"description": "Folding Region End"
|
|
}
|
|
}
|