vscode-ebnf

EBNF for Visual Studio Code
Mirror of https://github.com/Jamozed/vscode-ebnf
git clone http://git.omkov.net/vscode-ebnf
Log | Tree | Refs | README | LICENCE | Download

vscode-ebnf/syntaxes/ebnf.mdCodeblock.json (29 lines, 553 B) -rw-r--r-- blame download

012345678910111213141516171819202122232425262728
{
	"scopeName": "markdown.ebnf.codeblock",
	"fileTypes": [],
	"injectionSelector": "L:markup.fenced_code.block.markdown",
	"patterns": [
		{
			"include": "#ebnf-code-block"
		}
	],
	"repository": {
		"ebnf-code-block": {
			"begin": "(?<=[`~])ebnf(\\s+[^`~]*)?$",
			"end": "(^|\\G)(?=\\s*[`~]{3,}\\s*$)",
			"patterns": [
				{
					"begin": "(^|\\G)(\\s*)(.*)",
					"while": "(^|\\G)(?!\\s*([`~]{3,})\\s*$)",
					"contentName": "meta.embedded.block.ebnf",
					"patterns": [
						{
							"include": "text.ebnf"
						}
					]
				}
			]
		}
	}
}