Kizuki
    Preparing search index...

    Interface Paragraph

    One paragraph of text before chunking. Paragraphs join only when they share a group.

    interface Paragraph {
        group?: string;
        location?: {
            cells?: string;
            heading?: string;
            notes?: boolean;
            page?: number;
            paragraph?: number;
            sheet?: string;
            slide?: number;
        };
        text: string;
    }
    Index
    group?: string

    Paragraphs with the same group may be joined. Defaults to the location.

    location?: {
        cells?: string;
        heading?: string;
        notes?: boolean;
        page?: number;
        paragraph?: number;
        sheet?: string;
        slide?: number;
    }

    Where the paragraph sits in the file. undefined means an empty location.

    text: string

    The paragraph's text. A paragraph that is only spaces is skipped.