// Format and structure content as clean, well-organized Markdown. Use when asked to create documentation, format text, or generate Markdown output.
| name | markdown-formatter |
| description | Format and structure content as clean, well-organized Markdown. Use when asked to create documentation, format text, or generate Markdown output. |
| version | 1.0.0 |
Transforms unstructured content into clean, well-organized Markdown with proper headings, lists, code blocks, and formatting.
When formatting content to Markdown:
#) - Document title only##) - Major sections###) - SubsectionsInput: "Document the getUser function that takes userId string and returns User object with name email and createdAt fields"
Output:
## `getUser(userId)`
Retrieves a user by their unique identifier.
### Parameters
| Name | Type | Description |
|------|------|-------------|
| `userId` | `string` | The unique user identifier |
### Returns
`User` object with the following properties:
- `name` - User's display name
- `email` - User's email address
- `createdAt` - Account creation timestamp
#) over Setext