| Issue 26: | Default argument to sections and repeated sections should be @ | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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)
|