Kizuki
    Preparing search index...

    Interface Chunk

    A passage made from one or more paragraphs.

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

    The location of the first paragraph in the passage.

    text: string

    The passage's text, trimmed, at most max characters. Joined paragraphs are separated by a blank line.