aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-03-06 22:51:28 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-03-06 22:51:28 +0100
commit74afd2974a1fe4e70a6c6581ee61ec5bc28df2f7 (patch)
treeb410c4b276076ec5a5637c4e956230f253c443c6 /test/command
parent9e87114234acf2f52524a59225ca3aa41e22d794 (diff)
downloadpandoc-74afd2974a1fe4e70a6c6581ee61ec5bc28df2f7.tar.gz
Markdown writer: better handling of tables with empty columns.
E.g. an HTML table with two cells in the first row and one in the second (but no row/colspan). We now calculate the number of columns based on the longest row (or the length of aligns or widths). Closes #3337.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/3337.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/command/3337.md b/test/command/3337.md
new file mode 100644
index 000000000..8f6735f0f
--- /dev/null
+++ b/test/command/3337.md
@@ -0,0 +1,16 @@
+```
+% pandoc -f html -t markdown
+<table>
+<tr><td>a</td></tr>
+<tr><td>1</td><td>2</td></tr>
+</table>
+^D
+ --- ---
+ a
+ 1 2
+ --- ---
+
+
+
+```
+