<p>Simple table with caption:</p>
<table-wrap>
  <caption>
    <p>Demonstration of simple table syntax.</p>
  </caption>
  <table>
    <thead>
      <tr>
        <th align="right">Right</th>
        <th align="left">Left</th>
        <th align="center">Center</th>
        <th>Default</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td align="right">12</td>
        <td align="left">12</td>
        <td align="center">12</td>
        <td>12</td>
      </tr>
      <tr>
        <td align="right">123</td>
        <td align="left">123</td>
        <td align="center">123</td>
        <td>123</td>
      </tr>
      <tr>
        <td align="right">1</td>
        <td align="left">1</td>
        <td align="center">1</td>
        <td>1</td>
      </tr>
    </tbody>
  </table>
</table-wrap>
<p>Simple table without caption:</p>
<table-wrap>
  <table>
    <thead>
      <tr>
        <th align="right">Right</th>
        <th align="left">Left</th>
        <th align="center">Center</th>
        <th>Default</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td align="right">12</td>
        <td align="left">12</td>
        <td align="center">12</td>
        <td>12</td>
      </tr>
      <tr>
        <td align="right">123</td>
        <td align="left">123</td>
        <td align="center">123</td>
        <td>123</td>
      </tr>
      <tr>
        <td align="right">1</td>
        <td align="left">1</td>
        <td align="center">1</td>
        <td>1</td>
      </tr>
    </tbody>
  </table>
</table-wrap>
<p>Simple table indented two spaces:</p>
<table-wrap>
  <caption>
    <p>Demonstration of simple table syntax.</p>
  </caption>
  <table>
    <thead>
      <tr>
        <th align="right">Right</th>
        <th align="left">Left</th>
        <th align="center">Center</th>
        <th>Default</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td align="right">12</td>
        <td align="left">12</td>
        <td align="center">12</td>
        <td>12</td>
      </tr>
      <tr>
        <td align="right">123</td>
        <td align="left">123</td>
        <td align="center">123</td>
        <td>123</td>
      </tr>
      <tr>
        <td align="right">1</td>
        <td align="left">1</td>
        <td align="center">1</td>
        <td>1</td>
      </tr>
    </tbody>
  </table>
</table-wrap>
<p>Multiline table with caption:</p>
<table-wrap>
  <caption>
    <p>Here’s the caption. It may span multiple lines.</p>
  </caption>
  <table>
    <colgroup>
      <col width="15%" />
      <col width="14%" />
      <col width="16%" />
      <col width="35%" />
    </colgroup>
    <thead>
      <tr>
        <th align="center">Centered Header</th>
        <th align="left">Left Aligned</th>
        <th align="right">Right Aligned</th>
        <th align="left">Default aligned</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td align="center">First</td>
        <td align="left">row</td>
        <td align="right">12.0</td>
        <td align="left">Example of a row that spans multiple lines.</td>
      </tr>
      <tr>
        <td align="center">Second</td>
        <td align="left">row</td>
        <td align="right">5.0</td>
        <td align="left">Here’s another one. Note the blank line between
        rows.</td>
      </tr>
    </tbody>
  </table>
</table-wrap>
<p>Multiline table without caption:</p>
<table-wrap>
  <table>
    <colgroup>
      <col width="15%" />
      <col width="14%" />
      <col width="16%" />
      <col width="35%" />
    </colgroup>
    <thead>
      <tr>
        <th align="center">Centered Header</th>
        <th align="left">Left Aligned</th>
        <th align="right">Right Aligned</th>
        <th align="left">Default aligned</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td align="center">First</td>
        <td align="left">row</td>
        <td align="right">12.0</td>
        <td align="left">Example of a row that spans multiple lines.</td>
      </tr>
      <tr>
        <td align="center">Second</td>
        <td align="left">row</td>
        <td align="right">5.0</td>
        <td align="left">Here’s another one. Note the blank line between
        rows.</td>
      </tr>
    </tbody>
  </table>
</table-wrap>
<p>Table without column headers:</p>
<table-wrap>
  <table>
    <tbody>
      <tr>
        <td align="right">12</td>
        <td align="left">12</td>
        <td align="center">12</td>
        <td align="right">12</td>
      </tr>
      <tr>
        <td align="right">123</td>
        <td align="left">123</td>
        <td align="center">123</td>
        <td align="right">123</td>
      </tr>
      <tr>
        <td align="right">1</td>
        <td align="left">1</td>
        <td align="center">1</td>
        <td align="right">1</td>
      </tr>
    </tbody>
  </table>
</table-wrap>
<p>Multiline table without column headers:</p>
<table-wrap>
  <table>
    <colgroup>
      <col width="15%" />
      <col width="14%" />
      <col width="16%" />
      <col width="35%" />
    </colgroup>
    <tbody>
      <tr>
        <td align="center">First</td>
        <td align="left">row</td>
        <td align="right">12.0</td>
        <td>Example of a row that spans multiple lines.</td>
      </tr>
      <tr>
        <td align="center">Second</td>
        <td align="left">row</td>
        <td align="right">5.0</td>
        <td>Here’s another one. Note the blank line between rows.</td>
      </tr>
    </tbody>
  </table>
</table-wrap>