aboutsummaryrefslogtreecommitdiff
path: root/test/command/11150.md
blob: 38898b1d8f76b9c2587fbe7aa9879fa53cda3f2a (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
```
% pandoc -f rst
===  =====
int  float
===  =====
10   9.90
-10  9.90
===  =====
^D
<table>
<thead>
<tr>
<th>int</th>
<th>float</th>
</tr>
</thead>
<tbody>
<tr>
<td>10</td>
<td>9.90</td>
</tr>
<tr>
<td>-10</td>
<td>9.90</td>
</tr>
</tbody>
</table>

```