# rusty-html This crate allows for Jsx html inline like syntax in rust ## Example ```rust use rusty_html::html; fn main() { let html = html! { Page Title { vec!["ad", "sdf", "sdfsdf"].into_iter().map(|s| { html!{

{s}

} } ).collect::>() }

sfsdf

My first paragraph.

}; println!("{}", html); } ``` License: MIT