Trilium Frontend API
    Preparing search index...

    Interface Match

    An object representing matched element parts.

    interface Match {
        attributes?: [string, string?][];
        name?: boolean;
    }
    Index

    Properties

    Properties

    attributes?: [string, string?][]

    Array of matching tuples: attribute name, and optional token for tokenized attributes. Note that there could be multiple entries for the same attribute with different tokens (class names or style properties).

    name?: boolean

    True if name of the element was matched.