summaryrefslogtreecommitdiff
path: root/vendor/soundasleep/html2text/tests/html/table.html
blob: e887375c8c72573cd1d3a01d8c184869cd5f2d70 (plain)
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
<html>
<title>Ignored Title</title>
<body>
  <h1>Hello, World!</h1>
  <table>
    <thead>
      <tr>
        <th>Col A</th>
        <th>Col B</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>
          Data A1
        </td>
        <td>
          Data B1
        </td>
      </tr>
      <tr>
          <td>
            Data A2
          </td>
          <td>
            Data B2
          </td>
      </tr>
      <tr>
        <td>
          Data A3
        </td>
        <td>
          Data B4
        </td>
      </tr>
    </tbody>
    <tfoot>
      <tr>
          <td>
            Total A
          </td>
          <td>
            Total B
          </td>
       </tr>

    </tfoot>

  </table>

</body>
</html>