The following commands build lists. Note that begin/end pairs must
be balanced, and nesting is supported. There are three kinds
of lists: numbered lists, which are numbered automatically,
bullet lists, which display some special bullet symbol, and
keyed lists, which display a string of text for each item.
@begin_keyed_list()
@begin_keyed_list_item('bullet')
A bullet or similar character at the start of each item.
@end_keyed_list_item()
@begin_keyed_list_item('numbered')
A number at the start of each item.
@end_keyed_list_item()
@begin_keyed_list_item('keyed')
A key, or definition term, at the start of each item.
@end_keyed_list_item()
@end_keyed_list()
which comes out like:
bullet
A bullet or similar character at the start of each item.
numbered
A number at the start of each item.
keyed
A key, or definition term, at the start of each item.