5.7. Tables

Interscript supports tables, although currently the support is fairly primitive. Here's how to create a table:
  @begin_table('Column 1','Column 2','Column 3')
  @table_row('Data 11', 'Data 12','Data13')
  @table_row('Data 21', 'Data 22','Data23')
  @end_table()
which looks like this:
Column 1Column 2Column 3
Data 11Data 12Data13
Data 21Data 22Data23