2017-03-21 14:16:46 +01:00
|
|
|
Correctly handle empty row:
|
|
|
|
```
|
|
|
|
% pandoc -f markdown -t rst
|
|
|
|
+---+---+
|
|
|
|
| 1 | 2 |
|
|
|
|
+---+---+
|
|
|
|
| | |
|
|
|
|
+---+---+
|
|
|
|
^D
|
|
|
|
+---+---+
|
|
|
|
| 1 | 2 |
|
|
|
|
+---+---+
|
|
|
|
| | |
|
|
|
|
+---+---+
|
|
|
|
```
|
2017-03-22 14:36:12 +01:00
|
|
|
|
|
|
|
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]
|
|
|
|
[[]
|
|
|
|
,[]]
|
|
|
|
[[[Para [Str "1"]]
|
|
|
|
,[Para [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 |
|
|
|
|
+---+---+
|
|
|
|
| | |
|
|
|
|
+---+---+
|
|
|
|
```
|