csv_md 0.1.0

Struct to convert CSV to pretty-printed Markdown..
Documentation
# CSV_MD
[![Latest version](https://img.shields.io/crates/v/csv_md.svg)](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
 | ID | Name     | Description       |
 | -- | -------- | ----------------- |
 | 1  | Language | Rust              |
 | 2  | CSV_MD   | Convert CSV to MD |
 | 3  | License  | MIT               |
 | 4  | Author   | Roman Chumak      |
```

output MD:
 | ID | Name     | Description       |
 | -- | -------- | ----------------- |
 | 1  | Language | Rust              |
 | 2  | CSV_MD   | Convert CSV to MD |
 | 3  | License  | MIT               |
 | 4  | Author   | Roman Chumak      |