markmv - v1.39.2
    Preparing search index...

    Interface GraphEdge

    Represents an edge in the link graph.

    interface GraphEdge {
        source: string;
        target: string;
        type: "internal" | "external" | "anchor" | "image" | "claude-import";
        text?: string;
        line?: number;
        weight: number;
    }
    Index
    source: string

    Source node ID

    target: string

    Target node ID

    type: "internal" | "external" | "anchor" | "image" | "claude-import"

    Link type

    text?: string

    Original link text

    line?: number

    Line number where link appears

    weight: number

    Link weight (frequency or importance)