Open PacoVK opened 12 months ago
Seems like the parse needs further configuration here. After using
const content = parse(inputGivenAbove, {blockTextElements: {code: true}})
const codeElements = content.querySelectorAll('pre > code')
the output is now as expected
const content = parse(inputGivenAbove, {blockTextElements: {code: true}}) const codeElements = content.querySelectorAll('pre > code')
The option {code: true} does not appear in the README
Description
Given the input
when i call
I would expect
actually it is
Context
Node 21.2.0