2 unstable releases
0.2.0 | Jun 29, 2023 |
---|---|
0.1.0 | Mar 16, 2022 |
#818 in Text processing
1,101 downloads per month
Used in sss_moo
7KB
147 lines
markdown-table-rs
Creating markdown tables with Rust!
Example
Code:
use markdown_table::MarkdownTable;
let table = MarkdownTable::new(
vec![
vec!["test".to_string()],
vec!["1".to_string()],
vec!["2".to_string()]
]
);
println!("{}", table);
String output:
<table><tr><td>Testing<tr><td>1<tr><td>2</table>
Rendered:
Testing |
1 |
2 |
Dependencies
~1.5MB
~21K SLoC