docs(update):更新Arabica Sprint3 相关文档

Signed-off-by: gzkoala <guohao@gitconomy.org>
This commit is contained in:
gzkoala
2026-03-11 13:54:25 +08:00
parent ba9ef8e9b4
commit 81b4449aa7

View File

@@ -214,9 +214,9 @@ async function handleFetchFramework(params: any) {
```mermaid
graph TD
A[接收参数 params.content] --> B{typeof content === 'string'?}
A[接收参数 params.content] --> B{typeof content === string?}
B -- 是 --> C[直接将 content 传给 resourceService]
B -- 否(是个对象) --> D[执行 JSON.stringify(content, null, 2)]
B -- 否(是个对象) --> D["执行 JSON.stringify(content, null, 2)"]
D --> C
C --> E[写入 Markdown 文件]
E --> F[返回操作成功]