lira 0.1.0

No dependency, fast Rust eDSL for writing HTML
Documentation
  • Coverage
  • 50.45%
    112 out of 222 items documented0 out of 178 items with examples
  • Size
  • Source code size: 40.74 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 12.41 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 17s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • atomicptr/lira
    0 0 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • atomicptr

lira

No dependency, fast Rust eDSL for writing HTML

Usage

$ cargo add lira
use lira::prelude::*;

fn view() -> String {
    div()
        .class("card bg-base-200")
        .child(
            div()
                .class("card-body")
                .child(
                    h1().class("text-2xl").text("lira")
                )
                .child(
                    p().text("No dependency fast Rust eDSL for writing HTML")
                )
        )
        .render()
}

License

MIT