# CSV_MD
[](https://crates.io/crates/csv_md)
Struct to convert CSV to pretty-printed Markdown..
## Example
input text:
```shell
ID, Name, Description
1, Language, Rust
2, CSV_MD, Convert CSV to MD
3, License, MIT
4, Author, Roman Chumak
```
output text:
```shell
| 1 | Language | Rust |
| 2 | CSV_MD | Convert CSV to MD |
| 3 | License | MIT |
| 4 | Author | Roman Chumak |
```
output MD:
| 1 | Language | Rust |
| 2 | CSV_MD | Convert CSV to MD |
| 3 | License | MIT |
| 4 | Author | Roman Chumak |