Skip to content

测试有序列表中的代码块

方式1:有空行和缩进

  1. 第一项

    text
    代码内容1
  2. 第二项

方式2:无空行无缩进(错误)

  1. 第一项
text
代码内容1
  1. 第二项

方式3:有空行无缩进

  1. 第一项
text
代码内容1
  1. 第二项

实际文档中的例子

  1. 调用工具 feishu_im_user_get_messages

    json
    {
      "chat_id": "<当前 chat_id>",
      "page_size": 10,
      "sort_rule": "create_time_desc"
    }
  2. 在返回的 messages 列表里找到 message_id 等于当前消息 message_id 的那一条。

Powered by VitePress