Types of lists ll supports
- all lists
- all lists are files with a header line at the top containing the list's title, then a series of lines forming the list items. items are at most 2 lines. blank lines are ignored. oh and list items are just html.
- ordered lists, unordered lists
- these are the regular
<ol>
and <ul>
lists you know and love. just put one item on each line.
- anchor (link) lists
- make a list of links. items are separated by blank space and are 2 lines: the anchor (url) and its description.
- definition lists
- the lesser-known html-standard list type. same as anchor lists, but with
<dt>
on line one and <dd>
on line two.