Crates.io | ryde_html |
lib.rs | ryde_html |
version | 0.2.1 |
source | src |
created_at | 2024-02-29 16:39:39.647949 |
updated_at | 2024-03-18 21:04:08.184412 |
description | An ergonomic way to render html using plain old rust |
homepage | https://github.com/swlkr/ryde |
repository | https://github.com/swlkr/ryde |
max_upload_size | |
id | 1157967 |
size | 20,775 |
html offers an ergonomic way to render html from plain rust functions
cargo add html
use html::*;
fn render(element: Element) -> String {
html::render((
doctype(),
html((
head((title("title"), meta().charset("utf-8"))),
body(element)
))
))
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(
render(div("html")),
"<!DOCTYPE html><html><head><title>title</title></head><body><div>html</div></body></html>"
)
}
}
use html::*;
fn htmx_input() -> Element {
input()
.attr("hx-post", "/")
.attr("hx-target", ".target")
.attr("hx-swap", "outerHTML")
.attr("hx-push-url", "false")
}
fn main() {
let html: String = render(htmx_input());
// html == <input hx-post="/" hx-target=".target" hx-swap="outerHTML" hx-push-url="false">
}
use html::*;
fn turbo_frame(children: Element) -> Element {
element("turbo-frame", children)
}
fn main() {
let html: String = render(turbo_frame(div("inside turbo frame")).id("id"));
// <turbo-frame id="id">
// <div>inside turbo frame</div>
// </turbo-frame>
}