lambda-fairy / maud

:pencil: Compile-time HTML templates for Rust
https://maud.lambda.xyz
Apache License 2.0
2.14k stars 143 forks source link

Inline script and style tag helpers #448

Open imbolc opened 3 weeks ago

imbolc commented 3 weeks ago

Implemented @jonahlund suggestions for Maud

maud::html! {
   (maud::script!{
       console.log("Hello,");
       console.log("world!");
   })
}
imbolc commented 3 weeks ago

Somehow related to #181