Speedy Entities - v3.1.0
    Preparing search index...

    Interface EntityDecoderOptions

    The options recognized by createEntityDecoder.

    interface EntityDecoderOptions {
        entities?: Record<string, string>;
        isNumericReferenceSemicolonRequired?: boolean;
    }
    Index

    Properties

    entities?: Record<string, string>

    Mapping from an character entity reference to its decoded value. Entity references should contain only [a-zA-Z] and may optionally start with an ampersand "&" and end with a semicolon ";".

    {
    "&Delta;": "\u0394",
    "LongRightArrow;": "\u27F6"
    }
    isNumericReferenceSemicolonRequired?: boolean

    If true then numeric character references must be terminated with a semicolon to be decoded. Otherwise, numeric character references are recognized even if they aren't terminated with a semicolon.

    false