mdtable-cli 1.1.1

A tool that makes creating tables in markdown much easier!
# Examples
### In
```
Time, Temp
14:22, 0°
14:43, -1°


```

### Out
| Time  | Temp |
|-------|------|
| 14:22 ||
| 14:43 | -1°  |

---

### In
```
Table, with, empty, cells
missing, cells
,,can,be
anywhere


```

### Out
| Table    | with  | empty | cells |
|----------|-------|-------|-------|
| missing  | cells |       |       |
|          |       | can   | be    |
| anywhere |       |       |       |

---

### In
With the flag `-s " "`:
```
Spaces as separator
can also be
used


```

### Out
| Spaces | as   | separator |
|--------|------|-----------|
| can    | also | be        |
| used   |      |           |