8个版本

0.3.0 2023年4月6日
0.2.1 2023年4月2日
0.1.4 2023年4月2日
0.1.3 2021年12月12日
0.1.0 2021年11月26日

#transformation中排名76


laby使用

MIT许可证

80KB
2K SLoC

laby

Crate Docs Maintainer License Issues Contributors

laby是一个用于在Rust中编写HTML模板的小型宏库。文档

let n = html!(
  head!(
    title!("laby"),
  ),
  body!(
    p!("Hello, world!"),
  ),
);

let s = render!(DocType::HTML5, n);
<!DOCTYPE html><html><head><title>laby</title></head><body><p>Hello, world!</p></body></html>

lib.rs:

包含生成专用HTML渲染代码的宏。

此crate由crate laby 导出。如果您正在使用laby,则不应直接依赖此crate。

依赖

~2MB
~48K SLoC