Docs: Update benchmark for stealth/union-alpha EFF:high

This commit is contained in:
github-actions[bot]
2026-09-16 16:14:56 +00:00
parent ddcf1af44b
commit 0f704a2f22
12 changed files with 516 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
let loader;
export async function parseMarkdown(markdown) {
loader ||= import('https://esm.sh/marked@12').then((m) => m.marked);
const marked = await loader;
const source = typeof markdown === 'string' ? markdown : '';
return marked.parse(source, { gfm: true, breaks: false });
}
export default parseMarkdown;
// Generation time: 59.989s
// Result: PASS