{
  "name": "markdown-math",
  "version": "1.0.0",
  "description": "%description%",
  "license": "MIT",
  "contributes": {
    "languages": [
      {
        "id": "markdown-math",
        "aliases": []
      }
    ],
    "grammars": [
      {
        "language": "markdown-math",
        "scopeName": "text.html.markdown.math",
        "path": "./syntaxes/md-math.tmLanguage.json"
      },
      {
        "scopeName": "markdown.math.block",
        "path": "./syntaxes/md-math-block.tmLanguage.json",
        "injectTo": [
          "text.html.markdown"
        ],
        "embeddedLanguages": {
          "meta.embedded.math.markdown": "latex"
        }
      },
      {
        "scopeName": "markdown.math.inline",
        "path": "./syntaxes/md-math-inline.tmLanguage.json",
        "injectTo": [
          "text.html.markdown"
        ],
        "embeddedLanguages": {
          "meta.embedded.math.markdown": "latex",
          "punctuation.definition.math.end.markdown": "latex"
        }
      }
    ],
    "notebookRenderer": [
      {
        "id": "vscode.markdown-it-katex-extension",
        "displayName": "Markdown it KaTeX renderer",
        "entrypoint": {
          "extends": "vscode.markdown-it-renderer",
          "path": "./notebook-out/katex.js"
        }
      }
    ],
    "markdown.markdownItPlugins": true,
    "markdown.previewStyles": [
      "./notebook-out/katex.min.css",
      "./preview-styles/index.css"
    ],
    "configuration": [
      {
        "title": "Markdown Math",
        "properties": {
          "markdown.math.enabled": {
            "type": "boolean",
            "default": true,
            "description": "%config.markdown.math.enabled%"
          },
          "markdown.math.macros": {
            "type": "object",
            "additionalProperties": {
              "type": "string"
            },
            "default": {},
            "description": "%config.markdown.math.macros%",
            "scope": "resource"
          }
        }
      }
    ]
  }
}
