export function extractTextFromHTML(html: string): string {
// 使用 cheerio 加载 HTML 字符串
const $ = cheerio.load(html);
// 提取纯文本内容
const text = $('body').text();
// 截取前 200 个字符
const truncatedText = text.substring(0, 200);
return truncatedText;
}
09-29
3066
04-13
199
04-11
407