comparison tests/thead.ur @ 2007:d3a0f2b8af28

<thead>, <tbody>, <tfoot>
author Adam Chlipala <adam@chlipala.net>
date Wed, 30 Apr 2014 13:05:54 -0400
parents
children
comparison
equal deleted inserted replaced
2006:c3b03d099e04 2007:d3a0f2b8af28
1 fun main () : transaction page = return <xml><body>
2 <table>
3 <thead>
4 <tr> <th>A</th> <th>B</th> </tr>
5 </thead>
6
7 <tbody>
8 <tr> <td>1</td> <td>2</td> </tr>
9 <tr> <td>3</td> <td>4</td> </tr>
10 </tbody>
11
12 <tfoot>
13 <tr> <th>C</th> <th>D</th> </tr>
14 </tfoot>
15 </table>
16 </body></xml>