Wiki Help/Wiki Lists
Here you'll learn how to use lists in this wiki.
First, be advised that unlike the regular text /WikiWhitespace, in lists you use just one line break to move to another list item. Using two ie. leaving blank lines between list items will separate them into different lists. While you can get away with it with definition and bullet lists, with numbered lists this will reset their counter to 1.
Begin a line with a # for a numbered list, a * for a bullet list, or a : for a simple indent:
#numero uno #deux *oranges *bananas :well, i disagree :you see, . . .
becomes:
- numero uno
- deux
- oranges
- bananas
- well, i disagree
- you see, . . .
You can pile 'em up to have multiply indented lists:
##the main point **apples ::no, you're wrong on that one.
becomes:
- the main point
- apples
- no, you're wrong on that one.
You can pile one list on top of another one. Let's say you're writing a numbered list, and you want to list a few unordered bullet points under it. You could do this:
#point number one #*some item #*some other equally important item #*last, but not least #point number two #:a definition
which becomes:
- point number one
- some item
- some other equally important item
- last, but not least
- point number two
- a definition
You can use this technique to combine any of the list or indent types.
Let's say you want to introduce blank lines into your list, without skipping numbering. The way to do this is to end a line with a double backslash (\\), and leave the next line 'blank' (or indeed, type anything you want in it. You can do this repeatedly to slurp up multiple lines into the same list item, like this:
#point number one \\ . #point number two \\ i've got more to say on this. . . #point number three
which renders as:
- point number one
. - point number two
i've got more to say on this. . . - point number three
You can end any list with a definition list; ie. a list item that shows a term and its definition (or whatever other use you care to put it to). The syntax for this is as follows:
*;term: definition :abc :*;def: ghi **point one **;a brief aside: and its implications
which appears as:
- term
- definition
- abc
- def
- ghi
- point one
- a brief aside
- and its implications