auk 0.1.0

A DSL for writing HTML using standard Rust syntax.
Documentation

auk

crates.io docs.rs crates.io

Auk is a DSL for writing HTML using standard Rust syntax.

Usage

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();