Interface INotebookHeading

Interface describing a notebook cell heading.

interface INotebookHeading {
    cellRef: Cell<ICellModel>;
    collapsed?: boolean;
    dataset?: Record<string, string>;
    isRunning: RunningStatus;
    level: number;
    outputIndex?: number;
    prefix?: null | string;
    skip?: boolean;
    text: string;
    type: HeadingType;
}

Hierarchy (view full)

Properties

cellRef: Cell<ICellModel>

Reference to a notebook cell.

collapsed?: boolean

Whether the heading is collapsed or not

dataset?: Record<string, string>

Dataset to add to the item node

isRunning: RunningStatus

Running status of the cells in the heading

level: number

HTML heading level.

outputIndex?: number

Index of the output containing the heading

prefix?: null | string

Heading prefix.

skip?: boolean

Whether the heading is marked to skip or not

text: string

Heading text.

Type of heading