[html] add handlebars

This commit is contained in:
Martin Aeschlimann
2016-09-14 09:49:40 +02:00
parent 1f6815a880
commit daad014a6f
9 changed files with 3196 additions and 457 deletions

View File

@@ -0,0 +1,23 @@
{
"comments": {
"blockComment": [ "<!--", "-->" ]
},
"brackets": [
["<!--", "-->"],
["<", ">"],
["{{", "}}"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}"},
{ "open": "[", "close": "]"},
{ "open": "(", "close": ")" },
{ "open": "'", "close": "'" },
{ "open": "\"", "close": "\"" },
{ "open": "<", "close": ">" }
],
"surroundingPairs": [
{ "open": "'", "close": "'" },
{ "open": "\"", "close": "\"" },
{ "open": "<", "close": ">" }
]
}