yo-html
=======
JSX-like macro similar to what you can find in React or Yew but without
framework nor trait.
```rust
let name = "Tippsie";
let class = "class";
let onclick = todo!();
let dynamic_attribute = "style";
html! {
<> // Support fragments
{"Hello "}{name}
("%x", 42)
// Shorthand for: format_args!("%x", 42)
>
}
```
An example of web framework is provided in the `examples` directory but you
need to make your own for this macro to be usable.