diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-03-02 16:48:53 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-03-02 16:48:53 +0100 |
commit | 4d25bba5f7a620ee6fe43c43d1a14cce4c357858 (patch) | |
tree | 53c918d0b13825af2374d9742855fa66d9392efe /test | |
parent | 46135ac8758c4fbb9dfe676b1462463f5476bbff (diff) | |
download | pandoc-4d25bba5f7a620ee6fe43c43d1a14cce4c357858.tar.gz |
RST reader: Handle multiline cells in simple tables.
Closes #1166.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/1166.md | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/test/command/1166.md b/test/command/1166.md new file mode 100644 index 000000000..756a065db --- /dev/null +++ b/test/command/1166.md @@ -0,0 +1,48 @@ +See #1166 and <http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#simple-tables>. + +``` +% pandoc -f rst -t html5 +===== ===== +col 1 col 2 +===== ===== +1 Second column of row 1. +2 Second column of row 2. + Second line of paragraph. +3 - Second column of row 3. + + - Second item in bullet + list (row 3, column 2). +\ Row 4; column 1 will be empty. +===== ===== +^D +<table> +<thead> +<tr class="header"> +<th>col 1</th> +<th>col 2</th> +</tr> +</thead> +<tbody> +<tr class="odd"> +<td>1</td> +<td>Second column of row 1.</td> +</tr> +<tr class="even"> +<td><p>2</p></td> +<td><p>Second column of row 2. Second line of paragraph.</p></td> +</tr> +<tr class="odd"> +<td><p>3</p></td> +<td><ul> +<li>Second column of row 3.</li> +<li>Second item in bullet list (row 3, column 2).</li> +</ul></td> +</tr> +<tr class="even"> +<td></td> +<td>Row 4; column 1 will be empty.</td> +</tr> +</tbody> +</table> +``` + |