//! From markdownify crate: https://github.com/Skardyy/mcat/tree/main/crates/markdownify
//! NOTE: Need to customize and use latest zip (will eventually do PRs)
/// creates a markdown table
///
/// # usage:
/// ```
/// use markdownify::sheets::to_markdown_table;
///
/// let headers = vec!["Names".to_string(), "Salary".to_string()];
/// let rows = vec![
/// vec!["Sarah".to_string(), "100".to_string()],
/// vec!["Jeff".to_string(), "200".to_string()],
/// ];
/// let md = to_markdown_table(&headers, &rows);
/// println!("{}", md);
/// ```