Simple single-level lists can be created by using the three list buttons in the editor.
- The * button inserts the wiki syntax for a bulleted list item
- The # button inserts the wiki syntax for a numbered list item.
- The @ button inserts the wiki syntax for an alphanumeric list item.
- The List button wraps HTML ul tags around the selected text to create an unordered list.
- The List = button wraps HTML ol tags around the selected text to create an ordered list.
- The li[*] button wraps HTML li tags around the selected text to create a list item.
If you'd like to create mixed lists, nested lists, or lists with additional types of list items, the methods below can be used instead.
Wiki markup lists are created with between one and five specific characters (@, *, or #) at the beginning of a line, followed by a space, and then whatever text you'd like the list item to have. Each list must begin with a list item with only one character at the beginning of the line, and there can be no blank lines between entries in the list. To create a blank line beneath a list item, you can insert two HTML <br> tags at the end of of the list item's text. Wiki and HTML markup are accepted in list items.
Use this code in a page:
@ Test
@ Test
@ Test
@@ Test
@@@ Test
@@@@ Test
@ Test
To create this:
- Test
- Test
- Test
- Test
- Test
- Test
- Test
Use this code in a page:
* Test
* Test
** Test
*** Test
**** Test
* Test
* Test
To create this:
Use this code in a page:
* ITEM 1 - ITEM 1 SUBTEXT <blockquote>ITEM 1 MORE SUBTEXT</blockquote>
* ITEM 2 - ITEM 2 SUBTEXT <blockquote>ITEM 2 MORE SUBTEXT</blockquote>
* ITEM 3 - ITEM 3 SUBTEXT <blockquote>ITEM 3 MORE SUBTEXT</blockquote>
To create this:
- ITEM 1 - ITEM 1 SUBTEXT
ITEM 1 MORE SUBTEXT
- ITEM 2 - ITEM 2 SUBTEXT
ITEM 2 MORE SUBTEXT
- ITEM 3 - ITEM 3 SUBTEXT
ITEM 3 MORE SUBTEXT
Use this code in a page:
# Test
# Test
## Test
### Test
#### Test
# Test
# Test
To create this:
- Test
- Test
- Test
- Test
- Test
- Test
- Test
Use this code in a page:
# ITEM 1 - ITEM 1 SUBTEXT <blockquote>ITEM 1 MORE SUBTEXT</blockquote>
# ITEM 2 - ITEM 2 SUBTEXT <blockquote>ITEM 2 MORE SUBTEXT</blockquote>
# ITEM 3 - ITEM 3 SUBTEXT <blockquote>ITEM 3 MORE SUBTEXT</blockquote>
To create this:
- ITEM 1 - ITEM 1 SUBTEXT
ITEM 1 MORE SUBTEXT
- ITEM 2 - ITEM 2 SUBTEXT
ITEM 2 MORE SUBTEXT
- ITEM 3 - ITEM 3 SUBTEXT
ITEM 3 MORE SUBTEXT
HTML lists work the same way as they do in any web page. Specifying the list type can be done in the ol, <ul>, or <li> tags, depending on how you need to use them. Wiki markup is accepted in list items.
This method is useful when an entire list will use one list item type. This way you only need to specify the type once, and all the list items can be entered normally.
Use this code in a page:
<ol style="list-style-type:lower-alpha;">
<li>lower-alpha</li>
<li>lower-alpha</li>
<li>lower-alpha</li>
</ol>
To create this:
- lower-alpha
- lower-alpha
- lower-alpha
Use this code in a page:
<ol style="list-style-type:upper-alpha;">
<li>upper-alpha</li>
<li>upper-alpha</li>
<li>upper-alpha</li>
</ol>
To create this:
- upper-alpha
- upper-alpha
- upper-alpha
Use this code in a page:
<ol style="list-style-type:decimal;">
<li>decimal</li>
<li>decimal</li>
<li>decimal</li>
</ol>
To create this:
- decimal
- decimal
- decimal
Use this code in a page:
<ol style="list-style-type:lower-roman;">
<li>lower-roman</li>
<li>lower-roman</li>
<li>lower-roman</li>
</ol>
To create this:
- lower-roman
- lower-roman
- lower-roman
Use this code in a page:
<ol style="list-style-type:upper-roman;">
<li>upper-roman</li>
<li>upper-roman</li>
<li>upper-roman</li>
</ol>
To create this:
- upper-roman
- upper-roman
- upper-roman
This method is useful when an entire list will use one list item type. This way you only need to specify the type once, and all the list items can be entered normally.
Use this code in a page:
<ul style="list-style-type:circle;">
<li>circle</li>
<li>circle</li>
<li>circle</li>
</ul>
To create this:
Use this code in a page:
<ul style="list-style-type:disc;">
<li>disc</li>
<li>disc</li>
<li>disc</li>
</ul>
To create this:
Use this code in a page:
<ul style="list-style-type:none;">
<li>none</li>
<li>none</li>
<li>none</li>
</ul>
To create this:
Use this code in a page:
<ul style="list-style-type:square;">
<li>square</li>
<li>square</li>
<li>square</li>
</ul>
To create this:
This method is useful when an creating a fancy list with more than one list item type.
Use this code in a page:
<ol>
<li style="list-style-type:lower-alpha;">lower-alpha</li>
<li style="list-style-type:lower-alpha;">lower-alpha</li>
<li style="list-style-type:lower-alpha;">lower-alpha</li>
</ol>
To create this:
- lower-alpha
- lower-alpha
- lower-alpha
Use this code in a page:
<ol>
<li style="list-style-type:upper-alpha;">upper-alpha</li>
<li style="list-style-type:upper-alpha;">upper-alpha</li>
<li style="list-style-type:upper-alpha;">upper-alpha</li>
</ol>
To create this:
- upper-alpha
- upper-alpha
- upper-alpha
Use this code in a page:
<ol>
<li style="list-style-type:circle;">circle</li>
<li style="list-style-type:circle;">circle</li>
<li style="list-style-type:circle;">circle</li>
</ol>
To create this:
- circle
- circle
- circle
Use this code in a page:
<ol>
<li style="list-style-type:decimal;">decimal</li>
<li style="list-style-type:decimal;">decimal</li>
<li style="list-style-type:decimal;">decimal</li>
</ol>
To create this:
- decimal
- decimal
- decimal
Use this code in a page:
<ol>
<li style="list-style-type:disc;">disc</li>
<li style="list-style-type:disc;">disc</li>
<li style="list-style-type:disc;">disc</li>
</ol>
To create this:
- disc
- disc
- disc
Use this code in a page:
<ol>
<li style="list-style-type:lower-roman;">lower-roman</li>
<li style="list-style-type:lower-roman;">lower-roman</li>
<li style="list-style-type:lower-roman;">lower-roman</li>
</ol>
To create this:
- lower-roman
- lower-roman
- lower-roman
Use this code in a page:
<ol>
<li style="list-style-type:none;">none</li>
<li style="list-style-type:none;">none</li>
<li style="list-style-type:none;">none</li>
</ol>
To create this:
- none
- none
- none
Use this code in a page:
<ol>
<li style="list-style-type:square;">square</li>
<li style="list-style-type:square;">square</li>
<li style="list-style-type:square;">square</li>
</ol>
To create this:
- square
- square
- square
Use this code in a page:
<ol>
<li style="list-style-type:upper-roman;">upper-roman</li>
<li style="list-style-type:upper-roman;">upper-roman</li>
<li style="list-style-type:upper-roman;">upper-roman</li>
</ol>
To create this:
- upper-roman
- upper-roman
- upper-roman
Use this code in a page:
<ol>
<li style="list-style-type:lower-alpha;">lower-alpha</li>
<ol>
<li style="list-style-type:upper-alpha;">upper-alpha</li>
<ol>
<li style="list-style-type:circle;">circle</li>
<ol>
<li style="list-style-type:decimal;">decimal</li>
<ol>
<li style="list-style-type:disc;">disc</li>
<ol>
<li style="list-style-type:lower-roman;">lower-roman</li>
<ol>
<li style="list-style-type:none;">none</li>
<ol>
<li style="list-style-type:square;">square</li>
<ol>
<li style="list-style-type:upper-roman;">upper-roman</li>
</ol>
</ol>
</ol>
</ol>
</ol>
</ol>
</ol>
</ol>
</ol>
To create this:
- lower-alpha
- upper-alpha
- circle
- decimal
- disc
- lower-roman
- none
- square
- upper-roman