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

    Interface Match

    Match result returned by LinkifyIt.match and LinkifyIt.matchAtStart.

    interface Match {
        schema: string;
        index: number;
        lastIndex: number;
        raw: string;
        text: string;
        url: string;
    }
    Index

    Properties

    schema: string

    Prefix (protocol) for matched string. Empty for fuzzy links.

    index: number

    First position of matched string.

    lastIndex: number

    Next position after matched string.

    raw: string

    Matched string.

    text: string

    Normalized text of matched string.

    url: string

    Normalized URL of matched string.