1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<html>
<body>
This table should have size 2x1, 3 entries in cell (1,1) and a nested table in cell (2,1).
Nested table should have size 2x2, 4 entries in with 4 entries, and nested table in cell (2,2).
Twice-nested table should have size 2x2 and 4 entries.
Every entry should contain <tt>2+2=4</tt> text
<wwwtable border=1>
(1,1)
[row <row>, column <col> - 1st entry, <tt>2+2=eval(2+2)</tt>]
[row <row>, column <col> - 2nd entry, <tt>2+2=eval(2+2)</tt>]
[row <row>, column <col> - 3rd entry, <tt>2+2=eval(2+2)</tt>]
(2,1)
<wwwtable border=1>
(1-2;1-2)
[nested table, row <row>, collumn <col>, <tt>2+2=eval(2+2)</tt>]
(2,2)
<wwwtable border=1>
(1-2;1-2)
[twice-nested table, row <row>, collumn <col>, <tt>2+2=eval(2+2)</tt>]
</wwwtable>
</wwwtable>
</wwwtable>
</body>
</html>
|