markmv - v1.26.2
    Preparing search index...

    Interface SplitStrategyOptions

    Configuration options for split strategy operations.

    Controls various aspects of the splitting process including output location, splitting criteria, and filename generation patterns.

    interface SplitStrategyOptions {
        outputDir?: string;
        maxSize?: number;
        headerLevel?: number;
        splitMarkers?: string[];
        splitLines?: number[];
        preserveFrontmatter?: boolean;
        filenamePattern?: string;
    }
    Index

    Properties

    outputDir?: string

    Output directory for split files

    maxSize?: number

    Maximum file size in KB (for size-based strategy)

    headerLevel?: number

    Header level to split on (for header-based strategy)

    splitMarkers?: string[]

    Custom split markers (for manual strategy)

    splitLines?: number[]

    Line numbers to split on (for line-based strategy)

    preserveFrontmatter?: boolean

    Whether to preserve frontmatter in original file

    filenamePattern?: string

    Filename pattern for generated files