vscode-string-html/syntaxes/es6.inline.html.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2023-03-03 12:07:45 +08:00
{
2023-03-03 17:17:11 +08:00
"fileTypes": ["js", "jsx", "ts", "tsx"],
2023-03-03 12:07:45 +08:00
"injectionSelector": "L:source.js -comment -string, L:source.jsx -comment -string, L:source.ts -comment -string, L:source.tsx -comment -string",
"injections": {
"L:source": {
"patterns": [
{
"match": "<",
"name": "invalid.illegal.bad-angle-bracket.html"
}
]
}
},
"patterns": [
{
"contentName": "meta.embedded.block.html",
2023-03-03 17:17:11 +08:00
"begin": "(?x)(\\s*?(\\w+\\.)?(?:html|/\\*\\s*html\\s*\\*/)\\s*)(`)",
2023-03-03 12:07:45 +08:00
"beginCaptures": {
"0": {
"name": "string.template.ts, punctuation.definition.string.template.begin.ts"
},
"1": {
"name": "entity.name.function.tagged-template.ts"
}
},
"end": "(`)",
"endCaptures": {
"0": {
"name": "string.template.ts, punctuation.definition.string.template.end.ts"
}
},
"patterns": [
{
"include": "source.ts#template-substitution-element"
},
{
"include": "text.html.basic"
}
]
},
{
"include": "source.ts#template-substitution-element"
}
],
"scopeName": "es6.inline.html"
2023-03-03 17:17:11 +08:00
}