Bulleted Lists

To make a bulleted (point form) list, place each item in its own paragraph, preceded by “* “.

Example

  * A first item
  * A second item
  * A third item
  * A fourth item

Will become:

<ul>
<li>A first item</li>
<li>A second item</li>
<li>A third item</li>
<li>A fourth item</li>
</ul>

Which, when rendered by a browser, will appear like this:

NB: Unmodified paragraphs will be wrapped in <p> tags.

More information