MWML [OL]-Tag

MWML [OL]-Tag

Creates an ordered list.

Syntax

  1. [UL]...[/UL]

Example

MWML-Input
HTML-Output
Preview
MWML-Input
  1. [OL]
  2. [LI]List item 1[/LI]
  3. [LI]List item 2[/LI]
  4. [/OL]
HTML-Output
  1. <ol>
  2. <li>List item 1</li>
  3. <li>List item 2</li>
  4. </ol>
Preview
  1. List item 1
  2. List item 2