@nycu-sdc/core-system-sdk
    Preparing search index...

    Interface ProseMirrorNode

    A ProseMirror node.

    interface ProseMirrorNode {
        attrs?: ProseMirrorNodeAttrs;
        content?: ProseMirrorNode[];
        marks?: ProseMirrorMark[];
        text?: string;
        type: string;
    }
    Index

    Properties

    Node attributes.

    content?: ProseMirrorNode[]

    Child nodes of this node.

    marks?: ProseMirrorMark[]

    Marks applied to this node, such as bold or italic.

    text?: string

    Text content for text nodes.

    type: string

    The node type, such as paragraph, heading, or text.