mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-03-17 03:11:01 +00:00
Docs: Update benchmark for openai/gpt-5.4
This commit is contained in:
15
tests/5_markdown_parser/outputs/openai_gpt-5.4.js
Normal file
15
tests/5_markdown_parser/outputs/openai_gpt-5.4.js
Normal file
@@ -0,0 +1,15 @@
|
||||
const parseMarkdown = async markdown => {
|
||||
if (typeof markdown !== 'string') throw new TypeError('Expected a Markdown string')
|
||||
|
||||
const { marked } = await import('https://cdn.jsdelivr.net/npm/marked/lib/marked.esm.js')
|
||||
|
||||
marked.setOptions({
|
||||
gfm: true,
|
||||
breaks: false
|
||||
})
|
||||
|
||||
return marked.parse(markdown)
|
||||
}
|
||||
export default parseMarkdown;
|
||||
// Generation time: 1.414s
|
||||
// Result: PASS
|
||||
Reference in New Issue
Block a user