Crates.io | terminal-link |
lib.rs | terminal-link |
version | 0.1.0 |
source | src |
created_at | 2021-03-12 00:29:38.761174 |
updated_at | 2021-03-12 00:29:38.761174 |
description | Create clickable links inside terminals |
homepage | |
repository | https://github.com/SirWindfield/terminal-link-rs |
max_upload_size | |
id | 367496 |
size | 18,332 |
Create clickable links inside your terminal.
use terminal_link::Link;
fn main() {
let link = Link::new("DuckDuckGo", "https://duckduckgo.com");
println!("{}", link);
}
As of now, the terminals listed in this Gist have support for clickable links.
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.