summaryrefslogtreecommitdiff
path: root/test/command/1166.md
blob: 756a065dbb8059b009f70d802bf94046e1544eb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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>
```