14 releases

0.6.2 Jan 1, 2025
0.5.2 Nov 18, 2024
0.5.1 Jun 18, 2024
0.5.0 Jan 20, 2024

#63 in Template engine

Download history 130/week @ 2024-12-01 133/week @ 2024-12-08 161/week @ 2024-12-15 40/week @ 2024-12-22 409/week @ 2024-12-29 244/week @ 2025-01-05 169/week @ 2025-01-12 215/week @ 2025-01-19 154/week @ 2025-01-26 181/week @ 2025-02-02 193/week @ 2025-02-09 277/week @ 2025-02-16 271/week @ 2025-02-23 494/week @ 2025-03-02 379/week @ 2025-03-09 282/week @ 2025-03-16

1,449 downloads per month

MIT license

64KB
953 lines

hypertext

A blazing fast type-checked HTML macro crate.

Features

  • Type checking for element names/attributes
    • Completely extensible for use with non-standard elements/attributes
  • #![no_std] support
  • Automatic escaping
  • Lazy rendering by default to avoid multiple allocations
    • Results in outstanding performance in cases of nested documents, which other libraries may falter in

Projects Using hypertext

Make a pull request to list your project here!

Example

use hypertext::{html_elements, GlobalAttributes, RenderIterator, Renderable};

let shopping_list = ["milk", "eggs", "bread"];

let shopping_list_maud = hypertext::maud! {
    div {
        h1 { "Shopping List" }
        ul {
            @for (&item, i) in shopping_list.iter().zip(1..) {
                li.item {
                    input #{ "item-" (i) } type="checkbox";
                    label for={ "item-" (i) } { (item) }
                }
            }
        }
    }
}
.render();

// or, alternatively:

let shopping_list_rsx = hypertext::rsx! {
    <div>
        <h1>Shopping List</h1>
        <ul>
            { shopping_list.iter().zip(1..).map(|(&item, i)| hypertext::rsx_move! {
                <li class="item">
                    <input id=format!("item-{i}") type="checkbox">
                    <label for=format!("item-{i}")>{ item }</label>
                </li>
            }).render_all() }
        </ul>
    </div>
}
.render();

Dependencies

~0.6–13MB
~166K SLoC