Skip to content

Commit

Permalink
Add <thead> so header repeats at page break.
Browse files Browse the repository at this point in the history
  • Loading branch information
tgraham-antenna committed Sep 28, 2021
1 parent 610e4c4 commit a89f4b3
Showing 1 changed file with 74 additions and 70 deletions.
144 changes: 74 additions & 70 deletions samples/text/01-05-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,74 +23,78 @@ That is data from [an actual scientific study](https://www.researchgate.net/publ
Here's a bigger table containing some lists. This table shows the skeletal muscles in your forehead and eyelid.

<table>
<tr>
<th>Muscle</th>
<th>Origin</th>
<th>Insertion</th>
<th>Nerve</th>
<th>Action</th>
</tr>
<tr>
<td>occipitofrontalis</td>
<td>
<ul>
<li>2 occipital bellies</li>
<li>2 frontal bellies</li>
</ul>
</td>
<td>galea aponeurotica</td>
<td>facial nerve</td>
<td>raises the eyebrows</td>
</tr>
<tr>
<td>occipitalis</td>
<td>
<ul>
<li>superior nuchal line of the occipital bone</li>
<li>mastoid part of the temporal bone</li>
</ul>
</td>
<td>galea aponeurotica</td>
<td>posterior auricular nerve (facial nerve)</td>
<td></td>
</tr>
<tr>
<td>frontalis</td>
<td>galea aponeurotica</td>
<td>skin of frontal region</td>
<td>facial nerve</td>
<td>wrinkles eyebrow</td>
</tr>
<tr>
<td>orbicularis oculi</td>
<td>
<ol>
<li>frontal bone</li>
<li>medial palpebral ligament</li>
<li>lacrimal bone</li>
</ol>
</td>
<td>lateral palpebral raphe</td>
<td>zygomatic branch of facial</td>
<td>closes eyelids</td>
</tr>
<tr>
<td>corrugator supercilii</td>
<td>superciliary arches</td>
<td>
<ul>
<li>forehead skin</li>
<li>near eyebrow</li>
</ul>
</td>
<td>facial nerve</td>
<td>wrinkles forehead</td>
</tr>
<tr>
<td>depressor supercilii</td>
<td>medial orbital rim</td>
<td>medial aspect of bony orbit</td>
<td>facial nerve</td>
<td>Depresses the eyebrow</td>
</tr>
<thead>
<tr>
<th>Muscle</th>
<th>Origin</th>
<th>Insertion</th>
<th>Nerve</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>occipitofrontalis</td>
<td>
<ul>
<li>2 occipital bellies</li>
<li>2 frontal bellies</li>
</ul>
</td>
<td>galea aponeurotica</td>
<td>facial nerve</td>
<td>raises the eyebrows</td>
</tr>
<tr>
<td>occipitalis</td>
<td>
<ul>
<li>superior nuchal line of the occipital bone</li>
<li>mastoid part of the temporal bone</li>
</ul>
</td>
<td>galea aponeurotica</td>
<td>posterior auricular nerve (facial nerve)</td>
<td></td>
</tr>
<tr>
<td>frontalis</td>
<td>galea aponeurotica</td>
<td>skin of frontal region</td>
<td>facial nerve</td>
<td>wrinkles eyebrow</td>
</tr>
<tr>
<td>orbicularis oculi</td>
<td>
<ol>
<li>frontal bone</li>
<li>medial palpebral ligament</li>
<li>lacrimal bone</li>
</ol>
</td>
<td>lateral palpebral raphe</td>
<td>zygomatic branch of facial</td>
<td>closes eyelids</td>
</tr>
<tr>
<td>corrugator supercilii</td>
<td>superciliary arches</td>
<td>
<ul>
<li>forehead skin</li>
<li>near eyebrow</li>
</ul>
</td>
<td>facial nerve</td>
<td>wrinkles forehead</td>
</tr>
<tr>
<td>depressor supercilii</td>
<td>medial orbital rim</td>
<td>medial aspect of bony orbit</td>
<td>facial nerve</td>
<td>Depresses the eyebrow</td>
</tr>
</tbody>
</table>

0 comments on commit a89f4b3

Please sign in to comment.