mirror of https://github.com/microsoft/vscode.git
rename notebookOutputRenderer to notebookRenderer, https://github.com/microsoft/vscode/issues/121819
This commit is contained in:
parent
fd212e712e
commit
ffd1f84ea9
|
@ -40,7 +40,7 @@
|
|||
}
|
||||
},
|
||||
"contributes": {
|
||||
"notebookOutputRenderer": [
|
||||
"notebookRenderer": [
|
||||
{
|
||||
"id": "markdownItRenderer",
|
||||
"displayName": "Markdown it renderer",
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
}
|
||||
},
|
||||
"contributes": {
|
||||
"notebookOutputRenderer": [
|
||||
"notebookRenderer": [
|
||||
{
|
||||
"id": "markdownItRenderer-katex",
|
||||
"displayName": "Markdown it katex renderer",
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
]
|
||||
}
|
||||
],
|
||||
"notebookOutputRenderer": [
|
||||
"notebookRenderer": [
|
||||
{
|
||||
"id": "notebookCoreTestRenderer",
|
||||
"displayName": "Notebook Core Test Renderer",
|
||||
|
|
|
@ -192,6 +192,6 @@ export const notebooksExtensionPoint = ExtensionsRegistry.registerExtensionPoint
|
|||
|
||||
export const notebookRendererExtensionPoint = ExtensionsRegistry.registerExtensionPoint<INotebookRendererContribution[]>(
|
||||
{
|
||||
extensionPoint: 'notebookOutputRenderer',
|
||||
extensionPoint: 'notebookRenderer',
|
||||
jsonSchema: notebookRendererContribution
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue