markdown-table-rs
Creating markdown tables with Rust!
Example
Code:
use MarkdownTable;
let table = new;
println!;
String output:
Rendered:
Creating markdown tables with Rust!
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: