2 个不稳定版本
0.2.0 | 2020年5月18日 |
---|---|
0.1.0 | 2020年5月18日 |
#99 在 #转换器
97KB
579 行
dvi2html
用 Rust 编写的 dvi2html 转换器。
关于
- Rust 包,用于将 dvi 文件转换为 html
- 基于 https://github.com/kisonecat/dvi2html
示例
let mut input_owned = Vec::new();
File::open("file.dvi")
.unwrap()
.read_to_end(&mut input_owned)
.unwrap();
println!("{}", dvi2html(&input_owned).unwrap());
开发
命令
构建
cargo build
创建 tfmdata 文件(如果 json 文件更改)
cargo run --bin tfm
测试
cargo test
依赖关系
~2.2–3MB
~67K SLoC