gilt 1.3.1

Fast, beautiful terminal formatting for Rust — styles, tables, trees, syntax highlighting, progress bars, markdown.
Documentation
1
2
3
4
5
6
7
//! Terminal hyperlink demo. Run: `cargo run --example link`

fn main() {
    let mut c = gilt::console::Console::default();
    c.print_text("If your terminal supports links, the following text should be clickable:");
    c.print_text("[link=https://github.com/khalidelborai/gilt][i]Visit [red]gilt[/red][/i] [yellow]on GitHub[/]");
}