markmv - v1.39.2
    Preparing search index...

    Interface WaybackResult

    Aggregate outcome of a Wayback conversion run across all requested files.

    interface WaybackResult {
        success: boolean;
        dryRun: boolean;
        filesProcessed: number;
        filesModified: number;
        totalConverted: number;
        totalAlreadyArchived: number;
        totalUntouched: number;
        files: WaybackFileResult[];
        errors: string[];
    }
    Index
    success: boolean

    Whether every file was processed without error

    dryRun: boolean

    Whether this was a dry run (no files written)

    filesProcessed: number

    Number of files examined

    filesModified: number

    Number of files whose content changed on disk

    totalConverted: number

    Total destinations rewritten to Wayback Machine URLs

    totalAlreadyArchived: number

    Total destinations already pointing at the Wayback Machine

    totalUntouched: number

    Total links left untouched

    Per-file outcomes

    errors: string[]

    Error messages for files that could not be processed