markmv - v1.26.2
    Preparing search index...

    Interface ExtendedBrokenLink

    Extended broken link interface with additional validation context.

    interface ExtendedBrokenLink {
        type: LinkType;
        url: string;
        line?: number;
        filePath?: string;
        sourceFile: string;
        link: MarkdownLink;
        reason:
            | "file-not-found"
            | "external-error"
            | "invalid-format"
            | "circular-reference";
        details?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    type: LinkType

    Link type for grouping

    url: string

    Link URL for display

    line?: number

    Line number where the link was found

    filePath?: string

    File path (for context when grouping by type)

    sourceFile: string

    File containing the broken link

    The broken link

    reason:
        | "file-not-found"
        | "external-error"
        | "invalid-format"
        | "circular-reference"

    Reason the link is broken

    details?: string

    Additional error details