List

The @list directive can generate two kinds of list. If the rows which follow the directive have two fields separated by a '|' character a 2-column table is generated where the headings are in the first column. As an example:

@list
Fruit|Apple
Colour|Green
Taste|Tangy
Size|Small
Shape|Round

will give:

Fruit Apple
Colour Green
Taste Tangy
Size Small
Shape Round

If there is only one field on each line following the directive then @list generates a bullet point list, for example

@list
Fruit
Colour
Taste
Size
Shape

will give:

  • Fruit
  • Colour
  • Taste
  • Size
  • Shape