markmv - v1.26.2
    Preparing search index...

    Interface JoinConflict

    Represents a conflict detected during the join operation.

    Conflicts can arise from duplicate headers, frontmatter merging issues, or content overlaps that require resolution.

    interface JoinConflict {
        type:
            | "frontmatter-merge"
            | "duplicate-headers"
            | "link-collision"
            | "content-overlap";
        description: string;
        files: string[];
        resolution?: string;
        lines?: number[];
    }
    Index

    Properties

    type:
        | "frontmatter-merge"
        | "duplicate-headers"
        | "link-collision"
        | "content-overlap"

    Type of conflict

    description: string

    Description of the conflict

    files: string[]

    Files involved in the conflict

    resolution?: string

    Suggested resolution

    lines?: number[]

    Line numbers where conflict occurs