Constructor for any member inheriting from cell. Sets up the container and renders the cell to it.
The notebook reference that this cell is attached to.
The container of this cell.
The type of this cell.
The initial content of this cell.
The content of the cell.
The type of this cell.
The HTMLElement to render under.
A Reference to the [[CodeMirror.Editor]] instance that is attached to this cell.
Reference to the Wrapper element for this cell's input.
Reference to the notebook instance that this cell is part of.
Reference to the Wrapper element for this cell's output.
Getter for the content of this cell. If this cell has an editor attached to it, it will get the content of the editor instead.
String containing the content of this cell.
Setter for the content of this cell. If this cell has an editor attached to it, it will set the content of the editor instead.
String containing the content of this cell.
The readonly type of this cell.
Creates and returns a reference to a [[CodeMirror.Editor]] instance that this cell will use.
The content of the codemirror instance.
Renders this cell as an editor with content inside input and output wrappers.
Run this cell. Must be implemented by subclasses.
Sets the visibility of the input wrapper.
The visibility of the input wrapper, defaulting to false.
The JSON representation of this cell.
Generated using TypeDoc
The abstract cell class that all other cell types inherit from.
This class is meant to be extended by Cell definitions from plugins, including builtin plugins. It contains all properties and functions that the library expects to be part of each cell.