pub fn link(text: &str, url: &str)Expand description
Prints a clickable hyperlink using OSC 8 sequences when enabled.
By default, this function falls back to printing text (url) to ensure
compatibility with terminals that do not support OSC 8. To enable OSC 8
output, set the environment variable ENABLE_OSC8=true.
Example:
use modcli::output::print;
print::link("mod-cli docs", "https://docs.rs/mod-cli");