markmv - v1.26.2
    Preparing search index...

    Interface JoinStrategyOptions

    Configuration options for join strategy operations.

    Controls various aspects of the joining process including ordering, content formatting, and conflict resolution behavior.

    interface JoinStrategyOptions {
        outputPath?: string;
        orderStrategy?: "manual" | "alphabetical" | "dependency" | "chronological";
        separator?: string;
        mergeFrontmatter?: boolean;
        deduplicateLinks?: boolean;
        resolveHeaderConflicts?: boolean;
        customOrder?: string[];
        preserveStructure?: boolean;
    }
    Index

    Properties

    outputPath?: string

    Output file path

    orderStrategy?: "manual" | "alphabetical" | "dependency" | "chronological"

    Strategy for ordering content

    separator?: string

    Custom section separator

    mergeFrontmatter?: boolean

    Whether to merge frontmatter

    deduplicateLinks?: boolean

    Whether to deduplicate links

    resolveHeaderConflicts?: boolean

    Whether to resolve header conflicts automatically

    customOrder?: string[]

    Custom ordering for manual strategy

    preserveStructure?: boolean

    Whether to preserve original file structure