maud-extensions 0.6.7

Component, inline CSS/JS, and font helper macros for Maud views.
Documentation
1
2
3
4
5
6
7
use maud_extensions::css;

fn main() {
    css!("body { color: red;");

    let _ = css!(r#".card { display: block; "#);
}