summaryrefslogtreecommitdiff
path: root/test/command/3516.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/3516.md')
-rw-r--r--test/command/3516.md51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/command/3516.md b/test/command/3516.md
new file mode 100644
index 000000000..8c7e478d3
--- /dev/null
+++ b/test/command/3516.md
@@ -0,0 +1,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 |
++---+---+
+| | |
++---+---+
+```