markmv - v1.39.2
    Preparing search index...

    Interface JoinSection

    Represents a section of content to be joined from a markdown file.

    Contains all necessary information for intelligent joining including content, metadata, dependencies, and ordering information.

    interface JoinSection {
        filePath: string;
        content: string;
        frontmatter: string | undefined;
        title: string | undefined;
        dependencies: string[];
        order: number;
    }
    Index
    filePath: string

    Original file path

    content: string

    Content of the file

    frontmatter: string | undefined

    Frontmatter extracted from the file

    title: string | undefined

    Title extracted from the file (from frontmatter or first header)

    dependencies: string[]

    Dependencies (files this content links to)

    order: number

    Order priority for this section