Merge the notebookMarkupRenderer contribution point into the renderers contribition point

For #123540
This commit is contained in:
Matt Bierner
2021-05-12 13:27:58 -07:00
parent 09bd849661
commit 11a8c4b4bc
9 changed files with 47 additions and 162 deletions

View File

@@ -21,18 +21,28 @@
}
},
"contributes": {
"notebookMarkupRenderers": [
"notebookOutputRenderer": [
{
"id": "markdownItRenderer-katex",
"displayName": "Markdown it katex renderer",
"entrypoint": "./notebook-out/katex.js",
"dependsOn": "markdownItRenderer"
"mimeTypes": [
"text/markdown"
],
"dependencies": [
"markdownItRenderer"
]
},
{
"id": "markdownItRenderer-emoji",
"displayName": "Markdown it emoji renderer",
"entrypoint": "./notebook-out/emoji.js",
"dependsOn": "markdownItRenderer"
"mimeTypes": [
"text/markdown"
],
"dependencies": [
"markdownItRenderer"
]
}
]
},