lists:styled

Lists with define'd CSS styling.

Xilize markup browser rendering
define. style
ol {list-style-type:upper-roman}
li > ol {list-style-type:lower-roman}

# order lists are typically numbered
# item two
## subitem 2.1
## subitem 2.2
# item three
  1. order lists are typically numbered
  2. item two
    1. subitem 2.1
    2. subitem 2.2
  3. item three

XHTML generated

<ol>
  <li>order lists are typically numbered</li>
  <li>item two
    <ol>
      <li>subitem 2.1</li>
      <li>subitem 2.2</li>
    </ol>
  </li>
  <li>item three</li>
</ol>