You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.3 KiB
TypeScript

2 years ago
import { useEffect, useRef } from 'preact/hooks'
import { unified } from 'unified'
import remarkParse from 'remark-parse'
import remarkMath from 'remark-math'
import remarkRehype from 'remark-rehype'
import rehypeKatex from 'rehype-katex'
import rehypeStringify from 'rehype-stringify'
async function renderMarkdownAsync(source: string) {
return await unified()
.use(remarkParse)
.use(remarkMath)
.use(remarkRehype)
.use(rehypeKatex, { throwOnError: false, errorColor: '#c60' })
.use(rehypeStringify)
.process(source)
}
// function renderMarkdownSync(source) {
// console.warn(`[Markdown] Rendering ${source.length} characters of markdown in sync mode`)
// return unified()
// .use(remarkParse)
// .use(remarkMath)
// .use(remarkRehype)
// .use(rehypeKatex, { throwOnError: false, errorColor: '#c60' })
// .use(rehypeStringify)
// .processSync(source)
// }
export const Markdown = ({ source }: { source: string }) => {
const elementRef = useRef<HTMLDivElement>(null)
2 years ago
useEffect(() => {
renderMarkdownAsync(source).then(data => {
if (elementRef.current) {
elementRef.current.innerHTML = data.toString()
}
})
2 years ago
}, [source])
return <div class="markdown" ref={elementRef}></div>
}