IHTMLHeading | @jupyterlab (original) (raw)
Interface IHTMLHeading
HTML heading
interface IHTMLHeading {
collapsed?: boolean;
dataset?: Record<string, string>;
id?: null | string;
level: number;
prefix?: null | string;
skip?: boolean;
text: string;
}
Hierarchy (View Summary)
- TableOfContents.IHeading
- IHTMLHeading
Index
Properties
collapsed? dataset? id? level prefix? skip? text
Properties
Optional
collapsed
collapsed?: boolean
Whether the heading is collapsed or not
Optional
dataset
dataset?: Record<string, string>
Dataset to add to the item node
Optional
id
id?: null | string
HTML id
level
level: number
HTML heading level.
Optional
prefix
prefix?: null | string
Heading prefix.
Optional
skip
skip?: boolean
Whether the heading is marked to skip or not
text
text: string
Heading text.