Auk is a DSL for writing HTML using standard Rust syntax.
use auk::*; let content = html() .child(head().child(title().text_content("Auk"))) .child(body().child(h1().text_content("Hello from Auk!"))); let rendered_html = content.render_to_string().unwrap();