@mathjax/src
    Preparing search index...

    Class HandlerList<N, T, D>

    The HandlerList class (extends PrioritizedList of Handlers)

    This list is used to find the handler for a given document by asking each handler to test if it can handle the document, and when one can, it is asked to create its associated MathDocument.

    Type Parameters

    • N

      The HTMLElement node class

    • T

      The Text node class

    • D

      The Document class

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    items: PrioritizedListItem<Handler<N, T, D>>[] = []

    The list of items, sorted by priority (smallest number first)

    DEFAULTPRIORITY: number = 5

    The default priority for items added to the list

    Methods

    • Parameters

      • document: any

        The document (string, window, DOM element, etc) to be handled

      Returns Handler<N, T, D>

      The handler from the list that can process the given document