rprintln

Macro rprintln 

Source
macro_rules! rprintln {
    () => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

Alias for println! - use when you need both std::println! and rich println.

ยงExample

use fast_rich::rprintln;

std::println!("Standard: no markup [bold]");
rprintln!("Rich: [bold]this is bold[/]");