This is a simple program that converts csv content into a markdown table.
Example:
Input csv (via stdin):
Color,Shape,Animal
Blue,Rectangle,Lion
Red,Circle,Tigre
Yello,Triangle,DolphinOutput:
| Color | Shape | Animal |
| ----- | --------- | ------- |
| Blue | Rectangle | Lion |
| Red | Circle | Tigre |
| Yello | Triangle | Dolphin |