IEditorConfig | @jupyterlab (original) (raw)
Interface IEditorConfig
A config object for the cell editors.
interface IEditorConfig {
code: Record<string, any>;
markdown: Record<string, any>;
raw: Record<string, any>;
}
Index
Properties
Properties
Readonly
code
code: Record<string, any>
Config options for code cells.
Readonly
markdown
markdown: Record<string, any>
Config options for markdown cells.
Readonly
raw
raw: Record<string, any>
Config options for raw cells.