Creating Lists
From The DarkMod Wiki
Unnumbered Lists
To create a list in Wiki Articles, simply place a star * in front of each line, like this:
* This is a list item * This is another list item
This is what it looks like:
- This is a list item
- This is another list item
Numbered Lists
For Numbered Lists just put the # sign in front of the list items, like this:
# This is a list item # This is another list item
This is what it looks like:
- This is a list item
- This is another list item
Line-Breaks in Numbered Lists
Note that placing a non-list-line between the numbered list items, the numbering will be broken, like this:
# This is a list item A line that is not a list-item will break the numbering. # This is another list item
This is what it looks like:
- This is a list item
A line that is not a list-item will break the numbering.
- This is another list item
One way to fix this is to use <br> as a line-breaker:
# This is a list item<br>A line that is not a list-item, with very long text. # This is another list item
This is what it looks like:
- This is a list item
A line that is not a list-item, with very long text. - This is another list item