[folding] regions for html. Fixes #39409

This commit is contained in:
Martin Aeschlimann
2017-12-01 10:51:05 +01:00
parent a47be8c8c1
commit 4f9f4ebb9f
3 changed files with 32 additions and 2 deletions

View File

@@ -0,0 +1,36 @@
{
"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"
}
}