#markdown-tables #table #structure #format

to_markdown_table

An easy way to format any data structure into a Markdown table

5 releases

0.1.5 Oct 6, 2024
0.1.4 Oct 5, 2024
0.1.3 Oct 5, 2024
0.1.2 Oct 5, 2024
0.1.1 Apr 1, 2024

#417 in Data structures

Download history 95/week @ 2024-10-08 7/week @ 2024-10-15 1/week @ 2024-11-12 606/week @ 2024-11-19 987/week @ 2024-11-26 1185/week @ 2024-12-03 1725/week @ 2024-12-10 1054/week @ 2024-12-17 831/week @ 2024-12-24 1309/week @ 2024-12-31 2201/week @ 2025-01-07 1659/week @ 2025-01-14 1430/week @ 2025-01-21

6,777 downloads per month

MIT license

9KB
186 lines

to_markdown_table

An easy way to format any data structure into a Markdown table.

[dependencies]
to_markdown_table = "0.1.0"

Example

use to_markdown_table::{MarkdownTable, TableRow};

struct User {
    name: String,
    age: u32
}

impl Into<TableRow> for User {
    fn into(self) -> TableRow {
        TableRow::new(vec![self.name.clone(), self.age.to_string()])
    }
}

let rows = vec![
    User { name: "Jessica".to_string(), age: 28 },
    User { name: "Dennis".to_string(), age: 22 }
];

let table = MarkdownTable::new(vec!["Name".to_string(), "Age".to_string()], rows).unwrap();

println!("{}", table);

lib.rs:

A simple library to create markdown tables.

Example

use to_markdown_table::{MarkdownTable, TableRow};

struct User {
    name: String,
    age: u32
}

impl Into<TableRow> for User {
    fn into(self) -> TableRow {
        TableRow::new(vec![self.name.clone(), self.age.to_string()])
    }
}

let rows = vec![
    User { name: "Jessica".to_string(), age: 28 },
    User { name: "Dennis".to_string(), age: 22 }
];

let table = MarkdownTable::new(Some(vec!["Name".to_string(), "Age".to_string()]), rows).unwrap();

println!("{}", table);

Dependencies

~235–690KB
~16K SLoC