Revert "Better notebook markup renderer api (#121882)"

This reverts commit 4cb27d2ec7.
This commit is contained in:
Matt Bierner
2021-04-26 19:43:16 -07:00
parent 4a0a1f2f6f
commit fe7c5aba01
21 changed files with 199 additions and 296 deletions

View File

@@ -40,14 +40,11 @@
}
},
"contributes": {
"notebookMarkupRenderers": [
"notebookMarkdownRenderer": [
{
"id": "markdownItRenderer",
"displayName": "Markdown it renderer",
"entrypoint": "./notebook-out/index.js",
"mimeTypes": [
"text/markdown"
]
"entrypoint": "./notebook-out/index.js"
}
],
"commands": [
@@ -346,7 +343,7 @@
"vscode:prepublish": "npm run build-ext && npm run build-preview",
"build-ext": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:markdown-language-features ./tsconfig.json",
"build-preview": "npx webpack-cli --mode production",
"build-notebook": "node ./esbuild",
"build-notebook": "npx webpack-cli --config webpack.notebook --mode production",
"compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none",
"watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose"
},