2 个版本
0.1.1 | 2023年11月10日 |
---|---|
0.1.0 | 2023年11月10日 |
25 在 #composition
4KB
63 行代码(不包括注释)
HTML 管道
该 crate 的目标是使在服务器端构建和重用 HTML 组件变得更加容易。
如何使用
cargo add html-pipe
use html_pipe::*;
let mut buf = Buffer::new();
node("html", attr("lang", "en"), node("body", noop, text("Hello World!")))(&mut buf).unwrap();
assert_eq!(buf, "<html lang=\"en\"><body>Hello World</body></html>");
待办事项
- 添加一个函数来链式调用函数
- 能够流式传输调用