File: tables_and_attr_list.html

package info (click to toggle)
python-markdown 2.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,804 kB
  • ctags: 839
  • sloc: python: 4,668; makefile: 54; sh: 12
file content (18 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<table>
<thead>
<tr>
<th>First Header</th>
<th>Second Header</th>
</tr>
</thead>
<tbody>
<tr>
<td class="foo bar" title="Some title!">Content Cell</td>
<td>Content Cell</td>
</tr>
<tr>
<td>Content Cell</td>
<td class="foo bar" title="Some title!">Content Cell</td>
</tr>
</tbody>
</table>