# auk
[](https://crates.io/crates/auk)
[](https://docs.rs/auk/)
[](https://github.com/maxdeviant/auk/blob/main/LICENSE)
Auk is a <abbr title="domain-specific language">DSL</abbr> for writing HTML using standard Rust syntax.
## Usage
```rust
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();
```