mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
[html] add handlebars
This commit is contained in:
24
extensions/handlebars/package.json
Normal file
24
extensions/handlebars/package.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "handlebars",
|
||||
"version": "0.1.0",
|
||||
"publisher": "vscode",
|
||||
"engines": {
|
||||
"vscode": "0.10.x"
|
||||
},
|
||||
"scripts": {
|
||||
"update-grammar": "node ../../build/npm/update-grammar.js daaain/Handlebars grammars/Handlebars.json ./syntaxes/Handlebars.json"
|
||||
},
|
||||
"contributes": {
|
||||
"languages": [{
|
||||
"id": "handlebars",
|
||||
"extensions": [ ".handlebars", ".hbs"],
|
||||
"aliases": [ "Handlebars", "handlebars" ],
|
||||
"mimetypes": ["text/x-handlebars-template"]
|
||||
}],
|
||||
"grammars": [{
|
||||
"language": "handlebars",
|
||||
"scopeName": "text.html.handlebars",
|
||||
"path": "./syntaxes/Handlebars.json"
|
||||
}]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user