public_notes/quartz/components/Content.tsx

12 lines
464 B
TypeScript
Raw Normal View History

2023-06-12 15:46:38 +09:00
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-10 15:06:02 +09:00
import { Fragment, jsx, jsxs } from 'preact/jsx-runtime'
import { toJsxRuntime } from "hast-util-to-jsx-runtime"
2023-06-12 15:46:38 +09:00
function Content({ tree }: QuartzComponentProps) {
2023-06-10 15:06:02 +09:00
// @ts-ignore (preact makes it angry)
const content = toJsxRuntime(tree, { Fragment, jsx, jsxs, elementAttributeNameCase: 'html' })
return content
}
2023-06-12 15:46:38 +09:00
export default (() => Content) satisfies QuartzComponentConstructor