使用openai进行了代码review

This commit is contained in:
2026-02-24 11:33:08 +08:00
parent 9efdf060f5
commit 0c97f02e51
32 changed files with 1499 additions and 969 deletions
+2 -3
View File
@@ -18,10 +18,9 @@ turndownService.use(gfm);
// Configure Turndown to handle some common elements better if needed
turndownService.addRule('strikethrough', {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
filter: ['del', 's', 'strike'] as any,
filter: ['del', 's'],
replacement: function (content: string) {
return '~' + content + '~';
return '~~' + content + '~~';
}
});