gespenst API - v0.1.0
    Preparing search index...

    Interface WebLinksOptions

    Controls link detection and activation behavior.

    interface WebLinksOptions {
        activate?: (event: MouseEvent, uri: string) => void;
        pattern?: RegExp;
        requireModifier?: boolean;
    }
    Index
    activate?: (event: MouseEvent, uri: string) => void

    Custom activation handler; defaults to a safe _blank browser navigation.

    pattern?: RegExp

    Pattern used to detect links. Defaults to HTTP and HTTPS URLs.

    requireModifier?: boolean

    Require Command on macOS or Control elsewhere for mouse/pen activation. Defaults to true.