Skip to content

Markdown 字段

Markdown 字段用于存储和渲染 Markdown 格式的富文本内容。

物理字段类型

  • MySQL: text
  • PostgreSQL: text
  • SQLite: text

适用场景

  • 文章内容
  • 产品描述
  • 帮助文档
  • 项目说明
  • 评论内容

API 返回示例

json
{
  "content": "# 标题\n\n这是一段**加粗**的文本。\n\n- 列表项1\n- 列表项2\n\n[链接](https://example.com)",
  "description": "支持 *斜体* 和 `代码块` 的描述"
}

Released under the MIT License.