rename notebookOutputRenderer to notebookRenderer, https://github.com/microsoft/vscode/issues/121819

This commit is contained in:
Johannes Rieken 2021-05-25 12:31:53 +02:00
parent fd212e712e
commit ffd1f84ea9
No known key found for this signature in database
GPG key ID: 96634B5AF12F8798
4 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@
} }
}, },
"contributes": { "contributes": {
"notebookOutputRenderer": [ "notebookRenderer": [
{ {
"id": "markdownItRenderer", "id": "markdownItRenderer",
"displayName": "Markdown it renderer", "displayName": "Markdown it renderer",

View file

@ -21,7 +21,7 @@
} }
}, },
"contributes": { "contributes": {
"notebookOutputRenderer": [ "notebookRenderer": [
{ {
"id": "markdownItRenderer-katex", "id": "markdownItRenderer-katex",
"displayName": "Markdown it katex renderer", "displayName": "Markdown it katex renderer",

View file

@ -46,7 +46,7 @@
] ]
} }
], ],
"notebookOutputRenderer": [ "notebookRenderer": [
{ {
"id": "notebookCoreTestRenderer", "id": "notebookCoreTestRenderer",
"displayName": "Notebook Core Test Renderer", "displayName": "Notebook Core Test Renderer",

View file

@ -192,6 +192,6 @@ export const notebooksExtensionPoint = ExtensionsRegistry.registerExtensionPoint
export const notebookRendererExtensionPoint = ExtensionsRegistry.registerExtensionPoint<INotebookRendererContribution[]>( export const notebookRendererExtensionPoint = ExtensionsRegistry.registerExtensionPoint<INotebookRendererContribution[]>(
{ {
extensionPoint: 'notebookOutputRenderer', extensionPoint: 'notebookRenderer',
jsonSchema: notebookRendererContribution jsonSchema: notebookRendererContribution
}); });