@gmb/bitmark-parser - v7.2.0
    Preparing search index...

    Interface DiffOptions

    Options for diff / diffBits.

    interface DiffOptions {
        bboxTolerance?: number;
        context?: number;
        inputFormat?: InputFormat;
        locate?: boolean;
        outputFormat?: DiffOutputFormat;
        similarity?: number;
        spacesAroundValues?: number;
    }
    Index
    bboxTolerance?: number

    Pixel tolerance per coordinate for pairing bits by sourceBB (default: 8).

    context?: number

    Context lines kept around each change inside a hunk (default: 3).

    inputFormat?: InputFormat

    Input format of BOTH documents (default: "auto", sniffed per side).

    locate?: boolean

    Add source line numbers to bit references (bitmark inputs only; default: false).

    outputFormat?: DiffOutputFormat

    Output format (default: "bitmark", the unified-style text). Ignored by diffBits.

    similarity?: number

    Text-similarity threshold 0..=1 for pairing bits that share no id, box or exact content (default: 0.6); 1 disables fuzzy pairing.

    spacesAroundValues?: number

    Spaces around tag values in the rendered bitmark lines, 0..=10 (default: 0).