({ codeblock }: { codeblock: RawCode })
| 86 | } |
| 87 | |
| 88 | async function MyCode({ codeblock }: { codeblock: RawCode }) { |
| 89 | const highlighted = await highlight(codeblock, "github-dark") |
| 90 | return <Pre code={highlighted} handlers={[handler]} /> |
| 91 | } |
| 92 | |
| 93 | async function InlineCode({ codeblock }: { codeblock: RawCode }) { |
| 94 | const highlighted = await highlight(codeblock, "github-dark") |
nothing calls this directly
no test coverage detected
searching dependent graphs…