subscript 0.4.1

reserved 👉 for the new compiler (and other infrastructure) see https://github.com/subscript-publishing 👉 We decided to move away from the old monolithic codebase and split everything into smaller sub-projects (for now).
{
	"scopeName": "markdown.subscript.latex",
	"injectionSelector": "L:text.html.markdown",
	"patterns": [
		{
			"include": "#latex-block"
        },
        {
			"include": "#latex-inline"
		},
		{
			"include": "#equation"
        }
	],
	"repository": {
        "latex-inline": {
            "begin": "(<tex>)",
            "end": "(</tex>)",
            "name": "comment.block.html",
            "contentName": "support.class.math.block.environment.latex",
			"patterns": [
				{
                    "contentName": "meta.embedded.block.latex",
					"patterns": [{"include": "text.tex#math"}]
				}
			]
		},
        "latex-block": {
			"begin": "(<texblock>)",
            "end": "(</texblock>)",
            "name": "comment.block.html",
			"patterns": [
				{
                    "contentName": "meta.embedded.block.latex",
					"patterns": [{"include": "text.tex.latex"}]
				}
			]
		},
		"latex-equation": {
			"begin": "(<equation>)",
            "end": "(</equation>)",
            "name": "comment.block.html",
            "contentName": "support.class.math.block.environment.latex",
			"patterns": [
				{
                    "contentName": "meta.embedded.block.latex",
					"patterns": [{"include": "text.tex#math"}]
				}
			]
		}
	}
}