This commit is contained in:
xiaojunnuo
2026-01-13 22:56:47 +08:00
parent 6c39d7b1ee
commit cb4ab6a99f

View File

@@ -172,7 +172,8 @@ async function genPluginMd() {
let i = 0;
for (const x of list) {
i++
mdContent += `| ${i}.| **${x.title}** | ${x.desc||''} | \n`;
const desc = x.desc||''
mdContent += `| ${i}.| **${x.title}** | ${desc.replaceAll("\n"," ")} | \n`;
}
return mdContent;
}