Markdown Field
The Markdown field is used to store and render rich text content in Markdown format.
Physical Field Types
- MySQL:
text
- PostgreSQL:
text
- SQLite:
text
Applicable Scenarios
- Article content
- Product descriptions
- Help documents
- Project explanations
- Comment content
API Return Example
json
{
"content": "# Title\n\nThis is a **bold** text.\n\n- List item 1\n- List item 2\n\n[Link](https://example.com)",
"description": "Description supporting *italic* and `code block`"
}