@yamlresume/core
    Preparing search index...

    Type Alias LinkMark

    Represents a link mark with optional attributes.

    type LinkMark = {
        attrs?: { class: string | null; href: string; target: string };
        type: "link";
    }
    Index
    attrs?: { class: string | null; href: string; target: string }

    Optional attributes for the link.

    Type Declaration

    • class: string | null

      CSS class attribute, typically null.

    • href: string

      The URL the link points to.

    • target: string

      Link target attribute (e.g., '_blank'), often null or empty.

    type: "link"