Colibrio Reader Framework API - Cloud license
    Preparing search index...
    interface IFragmentableElementsOptions {
        allowByDefault: boolean;
        blacklistSelectors?: string[];
        blacklistStyles?: IFragmentableElementsOptionStyleRule[];
        whitelistSelectors?: string[];
    }

    Properties

    allowByDefault: boolean

    If set to true, fragmentation is allowed if element does not match any selector in the blacklist. If set to false, fragmentation is only allowed it element matches any selector in the whitelist.

    blacklistSelectors?: string[]

    A list of selectors which cannot be fragmented. This applies both to forced and unforced breaks.

    []
    

    List of rules defining styles which are not allowed to fragment

    []
    
    whitelistSelectors?: string[]

    A list of selectors which are allowed to be fragmented. This applies both to forced and unforced breaks.

    []