untagged!() { /* proc-macro */ }
Removes all the color tags from the given string literal.
Accepts only one argument.
let s: &str = untagged!("A <g>normal</> word"); assert_eq!(s, "A normal word");