maud-extensions 0.5.2

Component, inline CSS/JS, and font helper macros for Maud views.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use maud_extensions::{component, js};

fn main() {
    js! {
        me().class_add("ready");
    }

    let _ = component! {
        div { "missing css helper" }
    };
}