Issue 26: Default argument to sections and repeated sections should be @
Project Member Reported by gtempacc...@yahoo.com, Jun 22, 2009
For repeated sections, a common idiom to put them inside a section:

{.section foo}
  {.repeated section}  {# leave off @ here}
  {.end}
{.end}

If sections grow predicates, then you might do something like:

{.section foo}
  Stuff here
  {.section?plural}
    Only in the plural case
  {.end}
{.end}

{.section?plural} is the same as {.section @ ? plural}

(still don't like the ? syntax)