macro_rules! println_raw {
() => { ... };
($($arg:tt)*) => { ... };
}Expand description
Print to stdout without markup parsing (with newline).
Use this for data output that may contain brackets like [1, 2, 3]
which would otherwise be interpreted as style tags.
ยงExample
use fast_rich::println_raw;
let items = vec!["a", "b", "c"];
println_raw!("Items: {:?}", items); // Brackets printed literally