blob: 8c7e478d350900eefb6c43b200675355812de00e (
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
41
42
43
44
45
46
47
48
49
50
51
|
Correctly handle empty row:
```
% pandoc -f markdown -t rst
+---+---+
| 1 | 2 |
+---+---+
| | |
+---+---+
^D
+---+---+
| 1 | 2 |
+---+---+
| | |
+---+---+
```
Temporarily added these to figure out what is happening
on Windows builds.
```
% pandoc -f markdown -t native
+---+---+
| 1 | 2 |
+---+---+
| | |
+---+---+
^D
[Table [] [AlignDefault,AlignDefault] [5.555555555555555e-2,5.555555555555555e-2]
[[]
,[]]
[[[Plain [Str "1"]]
,[Plain [Str "2"]]]
,[[]
,[]]]]
```
```
% pandoc -f native -t rst
[Table [] [AlignDefault,AlignDefault] [5.555555555555555e-2,5.555555555555555e-2]
[[]
,[]]
[[[Para [Str "1"]]
,[Para [Str "2"]]]
,[[]
,[]]]]
^D
+---+---+
| 1 | 2 |
+---+---+
| | |
+---+---+
```
|