aboutsummaryrefslogtreecommitdiff
path: root/test/command/5936.md
blob: 6ad4e83c2d3ca7bdc7862dd44002b92454dcf3f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
```
% pandoc -f gfm -t rst
| Name |
| ---- |
| Foo  |
| Bar  |
| Baz  |
| Quux |
^D
+------+
| Name |
+======+
| Foo  |
+------+
| Bar  |
+------+
| Baz  |
+------+
| Quux |
+------+
```

```
% pandoc -f gfm -t rst
| Name | Number |
| ---- | ------ |
| Foo  | 3 |
| Bar  | 4 |
| Baz  | 2 |
| Quux | 1 |
^D
==== ======
Name Number
==== ======
Foo  3
Bar  4
Baz  2
Quux 1
==== ======
```