25次发布
0.1.52 | 2024年8月12日 |
---|---|
0.1.50 | 2024年4月28日 |
0.1.48 | 2023年9月24日 |
0.1.47 | 2023年5月2日 |
0.1.35 | 2021年9月19日 |
#729 in 文本处理
每月267次下载
在 2 crates 中使用
93KB
3K SLoC
Brendan的Markdown风格
库
关于
这是驱动我的 BFoM 转换器的库。
由于这部分是为了扩展我的Rust知识而创建的,所以它没有外部依赖。
用法
要在自己的项目中使用,请将其添加到Cargo.toml中
[dependencies]
bfom-lib = "0.1"
use bfom_lib::{Config, Converter, Template};
fn main () -> Result<(), std::io::Error> {
// new uses inbuilt defaults if its passed None
let mut converter = Converter::new(None);
converter.convert()?;
}
如果您想覆盖默认设置,请查看 BFoM。