markmv - v1.26.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: undefined | string;
        title: undefined | string;
        dependencies: string[];
        order: number;
    }
    Index

    Properties

    filePath: string

    Original file path

    content: string

    Content of the file

    frontmatter: undefined | string

    Frontmatter extracted from the file

    title: undefined | string

    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