Lists
Create ordered, unordered, and nested lists in your documentation.
Lists organize information into easy-to-scan, structured formats. Mordoc inherits the support for ordered (numbered), unordered (bulleted), and nested lists.
Unordered lists
Create bullet-point lists using * or -:
| Syntax | Result |
|---|---|
Markdown |
|
Ordered lists
Create numbered lists using numbers followed by periods:
| Syntax | Result |
|---|---|
Markdown |
|
Automatic numbering
Items are automatically numbered sequentially. You can use 1. for all items:
| Syntax | Result |
|---|---|
Markdown |
|
This makes reordering items easier without renumbering.
Starting numbers matter. If you start with 3., the list will begin at 3, not 1.
Nested lists
Create hierarchical lists by indenting with tab:
Nested unordered lists
| Syntax | Result |
|---|---|
Markdown |
|
Nested ordered lists
| Syntax | Result |
|---|---|
Markdown |
|
Mixed lists
Combine ordered and unordered lists:
| Syntax | Result |
|---|---|
Markdown |
|
List items with multiple paragraphs
Add multiple paragraphs to a list item by indenting:
| Syntax | Result |
|---|---|
Markdown |
|
Next steps
- Tables - Display structured data in tables
- Code Blocks - Add syntax-highlighted code
- Callouts - Create styled alert boxes

