- Bullet lists are created by prefixing a space and an asterisk to a line.
- You can create sublists by adding more spaces on the front.
- Numbered lists are created by prefixing a space and a number to a line.
- You can create sublists by adding more spaces on the front.
Markup Text
* Item one * sub item one * sub item two * Item two. 1 sub item 2 2 sub item 3 * sub sub item one 1 sub sub sub item one.
Displays as:
- Item one
- sub item one
- sub item two
- Item two.
- sub item 2
- sub item 3
- sub sub item one
- sub sub sub item one.
- sub sub item one
Long numeric lists
Beware when using numeric lists that only single digit numbers are identified as numeric lists.
The following 11 item list renders incorrectly.
1 item one 2 item two 3 item three 4 item four 5 item five 6 item six 7 item seven 8 item eight 9 item nine 10 item ten 11 item eleven
- item one
- item two
- item three
- item four
- item five
- item six
- item seven
- item eight
- item nine
11 item eleven
This can be corrected by simply using a single digit (1-9, but not zero)- the actual numeric value is correct as the HTML is rendered using <ol> notation.
1 item one 2 item two 3 item three 4 item four 5 item five 6 item six 7 item seven 8 item eight 9 item nine 1 item ten 1 item eleven
- item one
- item two
- item three
- item four
- item five
- item six
- item seven
- item eight
- item nine
- item ten
- item eleven