You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have added a new notebook serializer API. It allows you to implement a simple read/write but no execute notebook in VS Code. Focus on the following two APIs
in package.json use the notebookProvider contribution points
in your extension use the vscode.notebook.registerNotebookSerializer API
If you have time write a simple extension or review the regex notebook extension. When using the API make sure that
the API works
the API is easy to use and properly documented
The text was updated successfully, but these errors were encountered:
Wasn't able to get it working with untitled notebooks, that seems to be a separate issue with working copy service. Other than that it's nice to use and sure beats registerNotebookContentProvider
Refs: #119089
Complexity: 3
Create Issue
We have added a new notebook serializer API. It allows you to implement a simple read/write but no execute notebook in VS Code. Focus on the following two APIs
package.json
use thenotebookProvider
contribution pointsvscode.notebook.registerNotebookSerializer
APIIf you have time write a simple extension or review the regex notebook extension. When using the API make sure that
The text was updated successfully, but these errors were encountered: