@yamlresume/core
    Preparing search index...

    Type Alias TextNode

    Represents a plain text node, with optional associated formatting marks.

    type TextNode = {
        marks?: Mark[];
        text: string;
        type: "text";
    }
    Index

    Properties

    Properties

    marks?: Mark[]

    Optional formatting marks (like BoldMark, LinkMark) applied to this text span.

    text: string

    The actual text content.

    type: "text"