We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dce4d0 commit 9e04fbaCopy full SHA for 9e04fba
answer/57.md
@@ -7,3 +7,11 @@ $ cat table.md | sed 's/|/ & /g' | column -t | sed 's/ |/|/g;s/| /|/g'
7
別解1(山田)$ cat table.md | pandoc -t gfm
8
別解2(上田)$ cat table.md | tr '|' '\t' | expand | sed 's/ [^ ]/|&/g;s/$/|/' | sed 's/^ *//g'
9
```
10
+
11
+ ### 読者別解
12
13
+ by [kariya-mitsuru](https://github.com/kariya-mitsuru)
14
15
+```
16
+別解3 $ column -t -s\| -o\| table.md
17
0 commit comments