pandoc/test/command/3516.md
2020-04-15 23:03:22 -04:00

1.3 KiB

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 ("",[],[]) (Caption Nothing
 []) [(AlignDefault,Just 5.555555555555555e-2),(AlignDefault,Just 5.555555555555555e-2)] 0
 [Row ("",[],[])
  [Cell ("",[],[]) Nothing 1 1
   []
  ,Cell ("",[],[]) Nothing 1 1
   []]]
 [Row ("",[],[])
  [Cell ("",[],[]) Nothing 1 1
   [Plain [Str "1"]]
  ,Cell ("",[],[]) Nothing 1 1
   [Plain [Str "2"]]]
 ,Row ("",[],[])
  [Cell ("",[],[]) Nothing 1 1
   []
  ,Cell ("",[],[]) Nothing 1 1
   []]]
 []]
% pandoc -f native -t rst
[Table ("",[],[]) (Caption Nothing
 []) [(AlignDefault,Just 5.555555555555555e-2),(AlignDefault,Just 5.555555555555555e-2)] 0
 [Row ("",[],[])
  [Cell ("",[],[]) Nothing 1 1
   []
  ,Cell ("",[],[]) Nothing 1 1
   []]]
 [Row ("",[],[])
  [Cell ("",[],[]) Nothing 1 1
   [Para [Str "1"]]
  ,Cell ("",[],[]) Nothing 1 1
   [Para [Str "2"]]]
 ,Row ("",[],[])
  [Cell ("",[],[]) Nothing 1 1
   []
  ,Cell ("",[],[]) Nothing 1 1
   []]]
 []]
^D
+---+---+
| 1 | 2 |
+---+---+
|   |   |
+---+---+