Macro skittles::strikethrough [] [src]

macro_rules! strikethrough {
    ( $($input:tt)* ) => { ... };
}

Inserts a line through each character.

let name = "Skittles";

strikethrough!("Taste the rainbow...");
strikethrough!("{} - Taste the rainbow...", name);