Notebook content options define what parts of a notebook are persisted. Note
For instance, a notebook serializer can opt-out of saving outputs and in that case the editor doesn't mark a notebooks as {@link NotebookDocument.isDirty dirty} when its output has changed.
Notebook content options define what parts of a notebook are persisted. Note For instance, a notebook serializer can opt-out of saving outputs and in that case the editor doesn't mark a notebooks as {@link NotebookDocument.isDirty dirty} when its output has changed.
(set-transient-cell-metadata! notebook-document-content-options value)
Controls if a cell metadata property change event will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist a metadata property in the file document, it should be set to true.
Controls if a cell metadata property change event will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist a metadata property in the file document, it should be set to true.
(set-transient-document-metadata! notebook-document-content-options value)
Controls if a document metadata property change event will trigger notebook document content change event and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist a metadata property in the file document, it should be set to true.
Controls if a document metadata property change event will trigger notebook document content change event and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist a metadata property in the file document, it should be set to true.
(set-transient-outputs! notebook-document-content-options value)
Controls if output change events will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist the outputs in the file document, this should be set to true.
Controls if output change events will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist the outputs in the file document, this should be set to true.
(transient-cell-metadata notebook-document-content-options)
Controls if a cell metadata property change event will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist a metadata property in the file document, it should be set to true.
Returns: { [key: string]: boolean | undefined; } | undefined
Controls if a cell metadata property change event will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist a metadata property in the file document, it should be set to true. **Returns:** `{ [key: string]: boolean | undefined; } | undefined`
(transient-document-metadata notebook-document-content-options)
Controls if a document metadata property change event will trigger notebook document content change event and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist a metadata property in the file document, it should be set to true.
Returns: { [key: string]: boolean | undefined; } | undefined
Controls if a document metadata property change event will trigger notebook document content change event and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist a metadata property in the file document, it should be set to true. **Returns:** `{ [key: string]: boolean | undefined; } | undefined`
(transient-outputs? notebook-document-content-options)
Controls if output change events will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist the outputs in the file document, this should be set to true.
Returns: boolean | undefined
Controls if output change events will trigger notebook document content change events and if it will be used in the diff editor, defaults to false. If the content provider doesn't persist the outputs in the file document, this should be set to true. **Returns:** `boolean | undefined`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close