2 个版本
使用旧的 Rust 2015
0.1.1 | 2018年10月11日 |
---|---|
0.1.0 | 2018年10月11日 |
#191 in #css
85KB
tachyons
Rust 版本的 Tachyons CSS 框架。
示例
基础
extern crate html_index;
extern crate tachyons;
pub fn main() {
let res = html_index::Builder::new()
.raw_body(
r#"<body class="measure white bg-black">
hello world
</body>"#,
)
.inline_style(tachyons::TACHYONS_DEFAULT)
.inline_style(tachyons::TACHYONS)
.build();
println!("{}", res);
}
安装
$ cargo add tachyons
安全性
此软件包使用 #![deny(unsafe_code)]
来确保所有内容都在 100% 安全的 Rust 中实现。
贡献
想要加入我们吗?请查看我们的 "贡献" 指南 并查看一些这些问题
参考文献
无。
许可
MIT OR Apache-2.0