markmv - v1.26.2
    Preparing search index...

    Interface LinkRedistributionResult

    Result of redistributing links after a content split operation.

    When a markdown file is split into multiple files, links may need to be updated to maintain proper references. This interface captures the results of that redistribution process.

    interface LinkRedistributionResult {
        updatedSections: SplitSection[];
        externalLinkUpdates: {
            filePath: string;
            oldHref: string;
            newHref: string;
            line: number;
        }[];
        errors: string[];
    }
    Index

    Properties

    updatedSections: SplitSection[]

    Updated sections with redistributed links

    externalLinkUpdates: {
        filePath: string;
        oldHref: string;
        newHref: string;
        line: number;
    }[]

    Links that need to be updated in external files

    errors: string[]

    Any errors during redistribution