markmv - v1.39.2
    Preparing search index...

    Interface ImageLinkOccurrence

    A markdown image link occurrence with its exact span in the source content.

    The span covers the whole ![alt](href) expression so callers can rewrite the occurrence surgically without re-serialising the surrounding document.

    interface ImageLinkOccurrence {
        alt: string | undefined;
        href: string;
        title: string | undefined;
        start: number;
        end: number;
    }
    Index
    alt: string | undefined

    Alt text between the brackets, or undefined when the brackets are empty

    href: string

    The href exactly as written in the source

    title: string | undefined

    Link title exactly as written, or undefined when absent

    start: number

    Start offset of the leading ! in the surrounding content

    end: number

    End offset (exclusive) just past the closing parenthesis