Expose prop to determine if custom prop is used (#208145)

This commit is contained in:
Don Jayamanne 2024-03-20 01:12:07 +01:00 committed by GitHub
parent f29a4bcaf7
commit c0fa2a7b47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,6 +125,9 @@ export function activate(context: vscode.ExtensionContext) {
return {
get dropCustomMetadata() {
return !useCustomPropertyInMetadata();
},
exportNotebook: (notebook: vscode.NotebookData): string => {
return exportNotebook(notebook, serializer);
},