markmv - v1.26.2
    Preparing search index...

    Interface SplitSection

    Represents a section of content extracted during a split operation.

    Contains all information needed to create a separate file from a portion of the original markdown content.

    interface SplitSection {
        title: string;
        content: string;
        startLine: number;
        endLine: number;
        headerLevel?: number;
        filename: string;
    }
    Index

    Properties

    title: string

    Section title/identifier

    content: string

    Content of this section

    startLine: number

    Starting line number in original file

    endLine: number

    Ending line number in original file

    headerLevel?: number

    Header level (1-6 for # to ######)

    filename: string

    Suggested filename for this section