ryde_html

Crates.ioryde_html
lib.rsryde_html
version0.2.1
sourcesrc
created_at2024-02-29 16:39:39.647949
updated_at2024-03-18 21:04:08.184412
descriptionAn ergonomic way to render html using plain old rust
homepagehttps://github.com/swlkr/ryde
repositoryhttps://github.com/swlkr/ryde
max_upload_size
id1157967
size20,775
swlkr (swlkr)

documentation

README

html

html offers an ergonomic way to render html from plain rust functions

cargo add html

Write some 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>"
      )
  }
}

Custom attributes

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">
}

Custom elements

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>
}
Commit count: 115

cargo fmt