A config object for the cell editors.

interface IEditorConfig {
    code: Record<string, any>;
    markdown: Record<string, any>;
    raw: Record<string, any>;
}

Properties

Properties

code: Record<string, any>

Config options for code cells.

markdown: Record<string, any>

Config options for markdown cells.

raw: Record<string, any>

Config options for raw cells.