File: table-caption.md

package info (click to toggle)
php-league-commonmark 2.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 8,264 kB
  • sloc: php: 20,396; xml: 1,988; ruby: 45; makefile: 21; javascript: 15
file content (48 lines) | stat: -rw-r--r-- 777 bytes parent folder | download | duplicates (8)
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
<table>
<thead>
<tr>
<th>header 1</th>
<th>header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>cell 1.1</td>
<td>cell 1.2</td>
</tr>
<tr>
<td>cell 2.1</td>
<td>cell 2.2</td>
</tr>
<tr>
<td>[Simple table]</td>
<td></td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th align="left">First Header</th>
<th align="center">Second Header</th>
<th align="right">Third Header</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left">First row</td>
<td align="center">Data</td>
<td align="right">Very long data entry</td>
</tr>
<tr>
<td align="left">Second row</td>
<td align="center"><strong>Cell</strong></td>
<td align="right"><em>Cell</em></td>
</tr>
<tr>
<td align="left">[<em>Prototype</em> table][reference_table]</td>
<td align="center"></td>
<td align="right"></td>
</tr>
</tbody>
</table>