aboutsummaryrefslogtreecommitdiff
path: root/test/command/10094.md
blob: 01504b068d8e742e5fa21020d2ec4fde5c67aadb (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
```
% pandoc -f rst -t markdown_strict
.. table:: Test Table

   ================================== ====
   Functions for tests                1   
   ================================== ====
   a                                  yes 
   b                                      
   c                                      
   d                                  yes
   e                                      
   ================================== ====
^D
<table>
<caption>Test Table</caption>
<thead>
<tr>
<th>Functions for tests</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>a</td>
<td>yes</td>
</tr>
<tr>
<td>b</td>
<td></td>
</tr>
<tr>
<td>c</td>
<td></td>
</tr>
<tr>
<td>d</td>
<td>yes</td>
</tr>
<tr>
<td>e</td>
<td></td>
</tr>
</tbody>
</table>

```