<?xml version="1.0" encoding="utf-8"?>
<s1 title="HelpOnLists"><p></p>
<s2 id="Lists" title="Lists">
<p><p>Contents</p>
<ol><li>
<link anchor="L">Lists</link><ol><li>
<link anchor="I">Indentation</link></li>
<li>
<link anchor="U">Unnumbered Lists</link></li>
<li>
<link anchor="N">Numbered Lists</link></li>
<li>
<link anchor="D">Definition Lists</link></li>
<li>
<link anchor="N-1">Numbered Sections</link></li>
<li>
<link anchor="M">More Examples</link></li>
</ol>
</li>
</ol>
<p> </p>
<ul><li><p>{i} This page helps if you are working with the standard editor. If you work with the graphical editor you can work with different tools to do almost the same. (See <jump href="/wiki/HelpOnGraphicalEditor">HelpOnGraphicalEditor</jump>). You can test all these things best in the <jump href="/wiki/WikiSandBox" class="nonexistent">WikiSandBox</jump>. </p>
</li>
</ul>
<p><strong>Help on Lists and Indentation</strong> </p>
<p>You can create different lists in a quite natural way. All you do is indent the line containing the list item with at least one space. To nest lists of different levels, you use different depths of indenting. All items on the same indent level belong to the same (sub-)list. That also means that you cannot change the style of a list after you started it. </p>
<p></p>
<s3 id="Indentation" title="Indentation">
<p>You can indent text with one or more spaces. This is especially useful if your are discussing on a wiki page and want to have some kind of thread level that is viewable </p>
<p><strong>Example:</strong> </p>
<source><![CDATA[ If you indent text
  like this, then it is indented in the output
    you can have multiple levels of indent]]></source><p><strong>Is displayed:</strong> </p>
<ul><li>If you indent text <ul><li>like this, then it is indented in the output <ul><li>you can have multiple levels of indent </li>
</ul>
</li>
</ul>
</li>
</ul>
<p></p>
</s3>
<s3 id="Unnumbered Lists" title="Unnumbered Lists">
<p>For a simple unnumbered(bulleted) list use the asterisk  * &quot;<code>*</code>&quot;. You can put linebreaks in the wiki markup of a list item by indenting the additional lines at the same level as the initial star that began the list item (without preceding it with an asterisk). If you want to make a line break inside a list simply use <code>&lt;&lt;BR&gt;&gt;</code> at the end of the term after which you like to see the break.  </p>
<ul><li><p>{i} For a list without bullets start the item with a dot &quot;<code>.</code>&quot;<sup><link anchor="fnref-fd3e97ea0eab8264f0f07893c9b672eb6cc33081" id="fndef-fd3e97ea0eab8264f0f07893c9b672eb6cc33081-0">1</link></sup> </p>
</li>
</ul>
<p><strong>Example:</strong> </p>
<source><![CDATA[ * simple item
 this will be displayed on the same line
  * second level
 * another simple item <<BR>> and something that is displayed in a new line]]></source><p><strong>Is displayed:</strong> </p>
<ul><li>simple item this will be displayed on the same line <ul><li>second level </li>
</ul>
</li>
<li><p>another simple item <br/>
 and something that is displayed in a new line </p>
</li>
</ul>
<p><strong>Example:</strong> </p>
<source><![CDATA[ . simple item without a bullet (no style)
  . second level]]></source><p><strong>Is displayed:</strong> </p>
<ul><li>simple item without a bullet (no style) <ul><li>second level </li>
</ul>
</li>
</ul>
<p></p>
</s3>
<s3 id="Numbered Lists" title="Numbered Lists">
<p>To get numbered list items, start it with a number template &quot;<code>1.</code>&quot;, &quot;<code>a.</code>&quot;, &quot;<code>A.</code>&quot;, &quot;<code>i.</code>&quot; or &quot;<code>I.</code>&quot;. To start a numbered list with a certain initial value, append &quot;<code>#</code><em>value</em>&quot; to the number template. </p>
<p><strong>Examples:</strong> </p>
<source><![CDATA[ 1. first item
 1. second item
  1. second level]]></source><p><strong>Is Displayed:</strong> </p>
<ol><li>first item </li>
<li>second item <ol><li>second level </li>
</ol>
</li>
</ol>
<p></p>
</s3>
<s3 id="Definition Lists" title="Definition Lists">
<p>Definition lists can be created by items of this form:  </p>
<source><![CDATA[<whitespace>term:: definition]]></source><ul><li><p>{i} note that the <em>term</em> cannot currently contain any wiki markup. </p>
</li>
<li><p>{i} definition lists are also used in dictionaries (see <jump href="/wiki/HelpOnDictionaries">HelpOnDictionaries</jump>) </p>
</li>
</ul>
<p><strong>Example:</strong> </p>
<source><![CDATA[ term:: definition
 another term:: and its definition]]></source><p><strong>Is Displayed:</strong> </p>
<gloss><label>term</label><item>definition </item><label>another term</label><item>and its definition </item></gloss><p></p>
</s3>
<s3 id="Numbered Sections" title="Numbered Sections">
<p>Also list related but another thing is the possibilty to number the section headers. You can do this by adding a <strong>#pragma</strong> processing instruction to the header of the page. Add </p>
<source><![CDATA[#pragma section-numbers on]]></source><p>to the top of the page and your section headings are getting numbers starting from 1 (subsections are also getting numbers like 1.1, 1.2 and so on) </p>
<ul><li><p>{i} see <jump href="/wiki/HelpOnProcessingInstructions">HelpOnProcessingInstructions</jump> for more </p>
</li>
</ul>
<p></p>
</s3>
<s3 id="More Examples" title="More Examples">
<p></p>
<source><![CDATA[A numbered list, mixed with bullets:
  1. one
  1. two
    1. one
      * bullet 1
      * bullet 2
    1. two
  1. three
    * bullet
      1. one

Variations of numbered lists:
  * Lowercase roman
    i. one
    i. two
  * Uppercase roman (with start offset 42)
    I.#42 forty-two
    I. forty-three
  * Lowercase alpha
    a. one
    a. two
  * Uppercase alpha
    A. one
    A. two]]></source><p> </p>
<p><strong>Are Displayed</strong>: </p>
<p>A numbered list, mixed with bullets: </p>
<ol><li>one </li>
<li>two <ol><li>one <ul><li>bullet 1 </li>
<li>bullet 2 </li>
</ul>
</li>
<li>two </li>
</ol>
</li>
<li>three <ul><li>bullet <ol><li>one </li>
</ol>
</li>
</ul>
</li>
</ol>
<p>Variations of numbered lists: </p>
<ul><li>Lowercase roman <ol><li>one </li>
<li>two </li>
</ol>
</li>
<li>Uppercase roman (with start offset 42) <ol><li>forty-two </li>
<li>forty-three </li>
</ol>
</li>
<li>Lowercase alpha <ol><li>one </li>
<li>two </li>
</ol>
</li>
<li>Uppercase alpha <ol><li>one </li>
<li>two </li>
</ol>
</li>
</ul>
<p>For more information on the possible markup, see <jump href="/wiki/HelpOnEditing">HelpOnEditing</jump>.  </p>

<br/>------------------------------------------------------------------------------<br/>
<p> </p>
<ol><li><p><link anchor="None" id="fnref-fd3e97ea0eab8264f0f07893c9b672eb6cc33081"></link>For the CSS savy people: This does &apos;list-style-type: none&apos; </p>
 (<link anchor="fndef-fd3e97ea0eab8264f0f07893c9b672eb6cc33081-0">1</link>)</p>
</li>
</ol>
</s3></s2></s1>