markmv - v1.26.2
    Preparing search index...

    Interface MergeStrategyOptions

    Configuration options for merge strategy operations.

    Controls various aspects of the merging process including conflict resolution, transclusion handling, and content formatting.

    interface MergeStrategyOptions {
        conflictResolution?: "manual" | "interactive" | "auto";
        separator?: string;
        createTransclusions?: boolean;
        mergeFrontmatter?: boolean;
        preserveStructure?: boolean;
        transclusionTemplate?: string;
        maxTransclusionDepth?: number;
    }
    Index

    Properties

    conflictResolution?: "manual" | "interactive" | "auto"

    Strategy for handling conflicts

    separator?: string

    Separator between merged sections

    createTransclusions?: boolean

    Whether to create Obsidian transclusions

    mergeFrontmatter?: boolean

    Whether to merge frontmatter

    preserveStructure?: boolean

    Whether to preserve original structure

    transclusionTemplate?: string

    Custom transclusion template

    maxTransclusionDepth?: number

    Maximum depth for transclusion resolution