markmv - v1.39.2
    Preparing search index...

    Interface EmbedSummary

    Summary of an embed run, in the shape emitted by --json.

    interface EmbedSummary {
        command: "embed";
        success: boolean;
        dryRun: boolean;
        filesProcessed: number;
        filesModified: string[];
        imagesEmbedded: number;
        imagesDeleted: string[];
        imagesKept: string[];
        errors: string[];
        warnings: string[];
    }
    Index
    command: "embed"

    Always "embed", so JSON consumers can identify the command

    success: boolean

    Whether the run completed without errors

    dryRun: boolean

    Whether this was a dry run, so no files were touched

    filesProcessed: number

    Number of markdown files examined

    filesModified: string[]

    Markdown files whose content was rewritten (empty in a dry run)

    imagesEmbedded: number

    Number of image links rewritten to data URIs

    imagesDeleted: string[]

    Image files removed because nothing in the processed set references them (empty in a dry run)

    imagesKept: string[]

    Image files kept because a file in the processed set still references them

    errors: string[]

    Error messages, one per failure

    warnings: string[]

    Warning messages