>>> import albatross
>>> ctx = albatross.SimpleContext('.')
>>> albatross.Template(ctx, '<magic>', '''
... <al-for iter="i" expr="range(15)" cols="4">
...  <al-for iter="c" expr="i.value()">
...   <al-value expr="' %2d' % c.value()">
...  </al-for whitespace>
... </al-for>
... ''').to_html(ctx)
>>> ctx.flush_content()
  0  4  8 12
  1  5  9 13
  2  6 10 14
  3  7 11
