macro_rules! show_wrapped {
($($style:ident, $value:expr),+ $(,)?) => { ... };
}Expand description
same as show! but wraps the text to the max width (ascii formatting strings are excluded from character count to properly wrap text)
e.g. show_wrapped!(green, "hello world", yellow, "this is a test", blue, "to make sure that the text is wrapped properly")
will wrap the text to the max width and print it in the specified colors
ascii formatting strings are excluded from character count to properly wrap text