【优化】AI Chat 抽离 Markdown 渲染

This commit is contained in:
cherishsince
2024-05-16 16:04:21 +08:00
parent ac9e5846c4
commit 91593d5d40
2 changed files with 7 additions and 185 deletions

View File

@ -29,7 +29,7 @@ const download = {
html: (data: Blob, fileName: string) => {
download0(data, fileName, 'text/html')
},
// 下载 Markdown 方法
// 下载 MarkdownView 方法
markdown: (data: Blob, fileName: string) => {
download0(data, fileName, 'text/markdown')
}