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
|
<table>
<thead>
<tr>
<th>Col1</th>
<th>Col2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Abbreviations</td>
<td><abbr title="abbreviations">abr</abbr></td>
</tr>
<tr>
<td>Emphasis</td>
<td><strong>emphasis works</strong></td>
</tr>
<tr>
<td>Footnote<sup id="fnref:1"><a class="footnote-ref" href="#fn:1">1</a></sup></td>
<td></td>
</tr>
<tr>
<td>Attr List</td>
<td><strong style="color: red;">Test</strong></td>
</tr>
</tbody>
</table>
<div>
<p>This <strong>will</strong> be processed.</p>
</div>
<dl>
<dt>Definition</dt>
<dd>Some text</dd>
</dl>
<div class="footnote">
<hr />
<ol>
<li id="fn:1">
<p>This is a footnote. <a class="footnote-backref" href="#fnref:1" title="Jump back to footnote 1 in the text">↩</a></p>
</li>
</ol>
</div>
|