minify_css_str!() { /* proc-macro */ }Expand description
Produce a minified css from string.
use static_web_minify::minify_css_str;
const CSS: &str = minify_css_str!(r#"
body {
color: #fff;
}
"#);
assert_eq!(CSS, "body{color:#fff}");use static_web_minify::minify_css_str;
const CSS: &str = minify_css_str!("
body {
color: #fff;
}
");
assert_eq!(CSS, "body{color:#fff}");