File: Tables.xhtml

package info (click to toggle)
libtext-multimarkdown-perl 1.000035-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 1,772 kB
  • ctags: 148
  • sloc: perl: 2,186; makefile: 8
file content (92 lines) | stat: -rw-r--r-- 1,817 bytes parent folder | download | duplicates (6)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<p>And this should be a link to the <a href="#prototype" title="Prototype table">Prototype</a>.</p>

<p>Table with nested headers</p>

<table>
<caption id="prototype">Prototype table</caption>
<col />
<col align="center" />
<col align="right" />
<thead>
<tr>
	<th> </th>
	<th colspan="2">Grouping</th>
</tr>
<tr>
	<th>First Header</th>
	<th>Second Header</th>
	<th>Third Header</th>
</tr>
</thead>
<tbody>
<tr>
	<td>Content</td>
	<td colspan="2" align="center"><em>Long Cell</em></td>
</tr>
<tr>
	<td>Content</td>
	<td align="center"><strong>Cell</strong></td>
	<td align="right">Cell</td>
</tr>
</tbody>

<tbody>
<tr>
	<td>New section</td>
	<td align="center">More</td>
	<td align="right">Data</td>
</tr>
<tr>
	<td>And more</td>
	<td colspan="2" align="center">And more</td>
</tr>
</tbody>
</table>

<p>Table with no headers</p>

<table>
<caption id="captionherethiscanbeaddedtoxrefsforlinks">Headerless table</caption>
<col />
<col align="center" />
<col align="right" />
<thead>
</thead>
<tbody>
<tr>
	<td>Content</td>
	<td colspan="2" align="center"><em>Long Cell</em></td>
</tr>
<tr>
	<td>Content</td>
	<td align="center"><strong>Cell</strong></td>
	<td align="right">Cell</td>
</tr>
</tbody>

<tbody>
<tr>
	<td>New section</td>
	<td align="center">More</td>
	<td align="right">Data</td>
</tr>
<tr>
	<td>And more</td>
	<td colspan="2" align="center">And more</td>
</tr>
<tr>
	<td>And a link</td>
	<td colspan="2" align="center"><a href="http://some.place.comm/">test link</a></td>
</tr>
<tr>
	<td>Cross Reference</td>
	<td colspan="2" align="center"><a href="#testheader" title="Test Header">Test Header</a></td>
</tr>
</tbody>
</table>

<p>And this should be a link to the <a href="#prototype" title="Prototype table">Prototype</a>.</p>

<h1 id="testheader">Test Header</h1>

<p>This is a separate section.</p>