Skip to content

Commit

Permalink
boxuni: add own README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hydrargyrum committed Jul 2, 2022
1 parent 1b5d8ef commit b53be40
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
27 changes: 27 additions & 0 deletions boxuni/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# boxuni

Given this table (which can be generated with `csv2table.py --header sample.csv`):

```
+----------+--------+
| name | color |
+----------+--------+
| zucchini | green |
| tomato | red |
| banana | yellow |
| orange | orange |
+----------+--------+
```

When passing it to stdin of `boxuni`, it is converted to prettier, Unicode-based:

```
┌──────────┬────────┐
│ name │ color │
├──────────┼────────┤
│ zucchini │ green │
│ tomato │ red │
│ banana │ yellow │
│ orange │ orange │
└──────────┴────────┘
```
5 changes: 5 additions & 0 deletions boxuni/sample.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name,color
zucchini,green
tomato,red
banana,yellow
orange,orange

0 comments on commit b53be40

Please sign in to comment.