@list tag
This tag starts a new item list which must be ended by an @end list tag.
The @item tag or @group tag must be used to group things together.
Syntax [link]
@list
@item <first item content>
@item <second item content>
...
@end list
Example [link]
This list code:
@list
@item First item
@item Second item:
@list
@item First nested item
@item Second nested item
@end list
@item Third item first paragraph
Third item second paragraph
@end list
Results in this list layout:
First item
Second item:
First nested item
Second nested item
Third item first paragraph
Third item second paragraph