Type Editor / @type-editor/markdown / types/StackElement / StackElement
Interface: StackElement
Defined in: types/StackElement.ts:7
Represents a stack element used during markdown parsing to track nested node construction.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
attrs | Readonly<Record<string, any>> | The attributes for the node, if any. | types/StackElement.ts:11 |
content | Node_2[] | The child nodes that will be contained in this node. | types/StackElement.ts:13 |
marks | readonly Mark[] | The active marks that apply to content within this node. | types/StackElement.ts:15 |
type | NodeType | The type of the ProseMirror node being constructed. | types/StackElement.ts:9 |