({ codeblock }: { codeblock: RawCode })
| 91 | } |
| 92 | |
| 93 | async function InlineCode({ codeblock }: { codeblock: RawCode }) { |
| 94 | const highlighted = await highlight(codeblock, "github-dark") |
| 95 | return <Inline code={highlighted} style={highlighted.style} /> |
| 96 | } |
| 97 | |
| 98 | const handler: AnnotationHandler = { |
| 99 | name: "m", |
nothing calls this directly
no test coverage detected
searching dependent graphs…