feat: 优化报告内容生成逻辑,简化内容处理

This commit is contained in:
zhaoyingbo 2025-02-05 10:29:11 +00:00
parent f8ab0f791b
commit 2324440aaa

View File

@ -115,7 +115,7 @@ const genReportCard = (
? `**小提示🔍**
[](${sheetLink})`
: ""
const content = `
const fullContent = `
使🍳
**🌟**
@ -128,6 +128,8 @@ ${llmRes}
${sheetLinkMd}
`
const content = sheetLink ? fullContent : llmRes
return cardGender.genCard("markdownSuccessCard", {
content,
})