platform-bible-utils
    Preparing search index...

    Interface Marker

    Interface describing the form of a given marker

    interface Marker {
        category: CategoryType;
        children?: Partial<
            {
                Breaks: string[];
                CenterTables: string[];
                CharacterStyling: string[];
                CrossReferences: string[];
                DivisionMarks: string[];
                FileIdentification: string[];
                Footnotes: string[];
                Headers: string[];
                Introduction: string[];
                Lists: string[];
                Paragraphs: string[];
                PeripheralMaterials: string[];
                PeripheralReferences: string[];
                Poetry: string[];
                Remarks: string[];
                RightTables: string[];
                SpecialFeatures: string[];
                SpecialText: string[];
                Tables: string[];
                TitlesHeadings: string[];
                Uncategorized: string[];
            },
        >;
        description: `%${string}%`;
        hasEndMarker: boolean;
        type: MarkerType;
    }
    Index

    Properties

    category: CategoryType
    children?: Partial<
        {
            Breaks: string[];
            CenterTables: string[];
            CharacterStyling: string[];
            CrossReferences: string[];
            DivisionMarks: string[];
            FileIdentification: string[];
            Footnotes: string[];
            Headers: string[];
            Introduction: string[];
            Lists: string[];
            Paragraphs: string[];
            PeripheralMaterials: string[];
            PeripheralReferences: string[];
            Poetry: string[];
            Remarks: string[];
            RightTables: string[];
            SpecialFeatures: string[];
            SpecialText: string[];
            Tables: string[];
            TitlesHeadings: string[];
            Uncategorized: string[];
        },
    >
    description: `%${string}%`
    hasEndMarker: boolean