Lists
Polifonic supports both unordered and ordered lists.
Unordered lists
Unordered lists are displayed using bullets. To add an unordered list to your page, type each list item on a separate line, starting with a start and indented by 2 spaces.
This markup:
* item 1 * item 2
will result in this display:
- item1
- item 2
You can create multi-level or nested lists by indenting the next level by another 2 spaces:
This markup:
* item 1 * item 1.1 * item 1.2 * item 2 * item 2.1 * item 2.2
will result in this display:
- item 1
- item 1.1
- item 1.2
- item 2
- item 2.1
- item 2.2
Ordered lists
Ordered lists are displayed using numbered items. To add an ordered list to your page, type each item on a separate line starting with a hyphen and indented by 2 spaces.
This markup:
- item 1 - item 2
will result in this display:
- item 1
- item 2
You can nest ordered lists by indenting the sub-list by another 2 spaces.
This markup:
- item 1 - item 1.1 - item 1.2 - item 2 - item 2.1 - item 2.2
will result in this display:
- item 1
- item 1.1
- item 1.2
- item 2
- item 2.1
- item 2.2
Mixed lists
You can mix unordered and ordered lists:
The following markup:
- item 1 - item 2 * item 2.1 - item 2.1.1 - item 2.1.2 * item 2.2 - item2
will result in the following display:
- item 1
- item 2
- item 2.1
- item 2.1.1
- item 2.1.2
- item 2.2
- item 2.1
- item2