AutoBE
    Preparing search index...

    Unit (## level) within a module.

    interface IUnit {
        content: string;
        keywords: string[];
        purpose: string;
        sections: ISection[];
        title: string;
    }
    Index

    Properties

    content: string

    Body content before any sections.

    keywords: string[]

    Semantic keywords for search and categorization.

    purpose: string

    Purpose of this unit within its module.

    sections: ISection[]

    Sections (### level) within this unit.

    title: string

    Title of the unit (## level heading).