Docs: Update benchmark for anthropic/claude-sonnet-5 EFF:high

This commit is contained in:
github-actions[bot]
2026-07-01 22:16:12 +00:00
parent 0c2cd5e395
commit 48dfa6cd44
12 changed files with 441 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
async function parseMarkdown(markdown) {
const [{ marked }, DOMPurify] = await Promise.all([
import('https://esm.sh/marked@12'),
import('https://esm.sh/dompurify@3').then(m => m.default),
]);
marked.setOptions({ gfm: true, breaks: true });
const rawHtml = marked.parse(markdown ?? '');
return DOMPurify.sanitize(rawHtml);
}
export default parseMarkdown;
// Generation time: 4.740s
// Result: PASS