11 releases

new 0.5.2 Nov 18, 2024
0.5.1 Jun 18, 2024
0.5.0 Jan 20, 2024
0.4.1 Jan 18, 2024
0.1.0 Jan 12, 2024

#95 in Template engine

Download history 75/week @ 2024-08-04 87/week @ 2024-08-11 77/week @ 2024-08-18 53/week @ 2024-08-25 82/week @ 2024-09-01 77/week @ 2024-09-08 26/week @ 2024-09-15 87/week @ 2024-09-22 61/week @ 2024-09-29 38/week @ 2024-10-06 32/week @ 2024-10-13 98/week @ 2024-10-20 74/week @ 2024-10-27 88/week @ 2024-11-03 27/week @ 2024-11-10 209/week @ 2024-11-17

400 downloads per month

MIT license

64KB
939 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–11MB
~130K SLoC