Essentials
Lists and Tables
Create ordered lists, unordered lists, and data tables.
Unordered lists
Use - or * to create bullet lists:
- First item
- Second item
- Third item with more detail that wraps to a second line to test how the list handles longer content
- Fourth item
Nested lists
- Parent item
- Child item
- Another child
- Grandchild item
- Another parent
Ordered lists
- First step
- Second step
- Third step
- Fourth step
Nested ordered lists
- Install dependencies
- Run
npm install - Verify with
npm list
- Run
- Configure the project
- Copy the example config
- Update the values
- Start the server
Task lists
- Create project structure
- Add configuration
- Write documentation
- Deploy to production
Tables
Basic table
| Name | Type | Description |
|---|---|---|
id | string | Unique identifier |
name | string | Display name |
email | string | Email address |
role | string | User role |
Table with alignment
| Left aligned | Center aligned | Right aligned |
|---|---|---|
| Content | Content | Content |
| More content | More content | More content |
| Even more | Even more | Even more |
Wide table
| Property | Type | Default | Required | Description |
|---|---|---|---|---|
host | string | localhost | Yes | The server hostname |
port | number | 3000 | No | The server port |
debug | boolean | false | No | Enable debug logging |
timeout | number | 30000 | No | Request timeout in ms |
retries | number | 3 | No | Number of retry attempts |