html-string

Simple, server-side html generation in Rust.

Warning: WIP

Examples

Use functions named after html tags:

rust use html_string::tags::*; let html = html([head(()), body(div(()))]); assert_eq!( format!("{html}"), "<html><head></head><body><div></div></body></html>" )

Tag functions are very flexible in the type of arguments you can provide:

```rust use htmlstring::tags::*; use htmlstring::attr;

// Empty node div(()); // Another html node div(div(())); // A list of nodes div([p(()), p(())]);

// Just text div("foot"); // Strings also work div(String::from("hello"));

// Attributes div(attr! { "class" => "box", "id" => "box-1" }); // Attributes and text (notice the tuple) div((attr! { "class" => "box" }, "foo")); // Attributes and a node div((attr! { "class" => "box" }, div(()))); // Attributes and a list of nodes div((attr! { "class" => "box" }, [p(()), p(())])); ```

Why use a template language when you are already using rust:

``` use htmlstring::tags::*; use htmlstring::Node;

let items = vec!["apples", "oranges", "books"]; let list = ul(items.intoiter().map(|i| li(i)).collect::>()); asserteq!( format!("{list}"), "

" ); ```