markdown-table-rs

Creating markdown tables with Rust!

Example

Code: ```rs use markdown_table::MarkdownTable;

let table = MarkdownTable::new( vec![ vec!["test".tostring()], vec!["1".tostring()], vec!["2".to_string()] ] );

println!("{}", table); ```

String output: ```markdown

Testing
1
2

```

Rendered:

Testing
1
2