1 2 3 4 5 6 7
use maud_extensions::{css, inline_css}; fn main() { css!("body { color: red;"); let _ = inline_css!(r#".card { display: block; "#); }