markmv - v1.26.2
    Preparing search index...

    Interface MergeSection

    Represents a section of content to be merged into a target file.

    Contains content information, positioning strategy, and metadata for intelligent merging operations.

    interface MergeSection {
        content: string;
        sourceFile: string;
        position: "interactive" | "replace" | "before" | "after";
        headerLevel?: number;
        isTransclusion?: boolean;
        transclusionRef?: string;
    }
    Index

    Properties

    content: string

    Content of the section

    sourceFile: string

    Source file path

    position: "interactive" | "replace" | "before" | "after"

    Position in the merge (before, after, or replace)

    headerLevel?: number

    Header level if this section has a header

    isTransclusion?: boolean

    Whether this is an Obsidian transclusion

    transclusionRef?: string

    Transclusion reference if applicable