terminal-link-rs

A Rust library for creating clickable links inside of terminals

APACHE-2.0 License

Stars
11

terminal-link

Create clickable links inside your terminal.

Usage

use terminal_link::Link;

fn main() {
    let link = Link::new("DuckDuckGo", "https://duckduckgo.com");
    println!("{}", link);
}

Supported terminals

As of now, the terminals listed in this Gist have support for clickable links.

Shortcomings

The library does not do any runtime-checks to determine if a terminal actually supports clickable links. This will be implemented in a later release.

License