# markdown-table-rs Creating markdown tables with Rust! ## Example Code: ```rs 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: ```markdown
Testing |
1 |
2 |
Testing |
1 |
2 |