Present structured information using lists or tables.
Markdown supports both ordered and unordered lists, as well as nested list structures.
Start each item with a number followed by a period to create an ordered list.
1. First item
2. Second item
3. Third item
4. Fourth itemUse dashes (-), asterisks (*), or plus signs (+) before each item for unordered lists.
- First item
- Second item
- Third item
- Fourth itemIndent items under another to create nested lists.
- First item
- Second item
- Additional item
- Additional item
- Third itemMarkdown tables use pipes (|) to separate columns and hyphens (---) to define the header row. Place a pipe at the start and end of each row for better compatibility.
| Property | Description |
| -------- | -------------------------------------- |
| Name | Full name of the user |
| Age | Age in years |
| Joined | Indicates if user joined the community || Property | Description |
|---|---|
| Name | Full name of the user |
| Age | Age in years |
| Joined | Indicates if user joined the community |