blob: 380a3c8a46d697c5b21701577db1bb72d641f194 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import { useMarked } from "../context/marked"
import { ComponentProps, createResource, splitProps } from "solid-js"
function strip(text: string): string {
const trimmed = text.trim()
const match = trimmed.match(/^<([A-Za-z]\w*)>/)
if (!match) return text
const tagName = match[1]
const closingTag = `</${tagName}>`
if (trimmed.endsWith(closingTag)) {
const content = trimmed.slice(match[0].length, -closingTag.length)
return content.trim()
}
return text
}
export function Markdown(
props: ComponentProps<"div"> & {
text: string
class?: string
classList?: Record<string, boolean>
},
) {
const [local, others] = splitProps(props, ["text", "class", "classList"])
const marked = useMarked()
const [html] = createResource(
() => strip(local.text),
async (markdown) => {
return marked.parse(markdown)
},
)
return (
<div
data-component="markdown"
classList={{
...(local.classList ?? {}),
[local.class ?? ""]: !!local.class,
}}
innerHTML={html()}
{...others}
/>
)
}
|