linkify-it - v6.1.0
    Preparing search index...

    Interface LinkifyOptions

    Recognition options for schemaless links.

    interface LinkifyOptions {
        fuzzyLink?: boolean;
        fuzzyEmail?: boolean;
        fuzzyIP?: boolean;
        "---"?: boolean;
        tlds?: string[];
        urlAuth?: boolean;
        maxLength?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    fuzzyLink?: boolean

    Recognize URLs without http(s):// prefix. Default false.

    fuzzyEmail?: boolean

    Recognize emails without mailto: prefix. Default true.

    fuzzyIP?: boolean

    Allow IPs in fuzzy links. Can conflict with some texts, like version numbers. Default false.

    "---"?: boolean

    Terminate link with --- if it is considered a long dash. Default false.

    tlds?: string[]

    Allowed TLDs list for fuzzy links. Replaces the default list when set.

    urlAuth?: boolean

    Recognize authentication data in URLs. Default false.

    maxLength?: number

    Maximum link length. Default 10000.