[[\
# table template
table = [[spy! title, data:
<table>
<tr>
[[for cell in title: {]]
<td><b>[[=cell]]</b></td>
[[}]]
</tr>
[[for row in data: {]]
<tr>
[[for cell in row: {]]
<td>[[=cell]]</td>
[[}]]
</tr>
[[}]]
</table>
]]
# table information
title = ['Country', 'Size', 'Population', 'GDP per capita']
data = [
[ 'USA', '9,158,960', '280,562,489', '$36,300' ],
[ 'Canada', '9,220,970', '31,902,268', '$27,700' ],
[ 'Mexico', '1,923,040', '103,400,165', '$9,000' ],
]
]]
[[-- emit web page --]]
<html><body>
[[ table(title, data) ]]
</body></html>
|