add documentation for from-json, from-yaml, history, split-row

This commit is contained in:
Sebastian Jung
2019-11-28 19:33:17 +01:00
parent 5bdda06ca6
commit c77059f891
4 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,34 @@
# split-row
Split row contents over multiple rows via the separator.
Syntax: `split-row <separator>`
### Parameters:
* `<separator>` the character that denotes what separates rows
## Examples
We can build a table from a file that looks like this
```shell
> open table.txt
4, 0, 2, 0, 7, 8
```
using the `split-row` command.
```shell
open table.txt | split-row ", "
━━━┯━━━━━━━━━
# │ <value>
───┼─────────
04
10
22
30
47
58
━━━┷━━━━━━━━━
```