vscode-markdown-onpoint/syntaxes/markdown-onPoint.tmLanguage.json
2020-02-08 17:27:36 +01:00

23 lines
500 B
JSON
Executable File

{
"scopeName": "markdown-onPoint.injection",
"injectionSelector": "L:meta.paragraph.markdown",
"patterns": [
{ "include": "#slide-annotation" },
{ "include": "#annotation" },
{ "include": "#fragment" }
],
"repository": {
"slide-annotation": {
"match": "@slide(\\(.+\\))?",
"name": "markup.heading.slide-annotation"
},
"annotation": {
"match": "@.+(\\(.+\\))?",
"name": "comment.annotation"
},
"fragment": {
"match": "\\+\\?",
"name": "comment.fragment"
}
}
}