2个不稳定版本
0.2.0 | 2023年6月29日 |
---|---|
0.1.0 | 2022年3月16日 |
#1513 in 文本处理
89 每月下载次数
在 sss_moo 中使用
7KB
147 行
markdown-table-rs
使用Rust创建Markdown表格!
示例
代码
use markdown_table::MarkdownTable;
let table = MarkdownTable::new(
vec![
vec!["test".to_string()],
vec!["1".to_string()],
vec!["2".to_string()]
]
);
println!("{}", table);
字符串输出
<table><tr><td>Testing<tr><td>1<tr><td>2</table>
渲染
测试 |
1 |
2 |
依赖
~515KB