2022-06-11 03:08:49 +00:00
|
|
|
import { memo } from "react"
|
|
|
|
import { default as ReactMarkdown } from "react-markdown"
|
|
|
|
|
|
|
|
type FestaMarkdownRendererProps = {
|
|
|
|
code: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component rendering Markdown source with {@link ReactMarkdown}, using some custom settings to better handle user input.
|
|
|
|
*
|
|
|
|
* Currently, it converts `h1` and `h2` into `h3`, and disables the rendering of `img` elements.
|
|
|
|
*/
|
|
|
|
export const FestaMarkdownRenderer = memo(({ code }: FestaMarkdownRendererProps) => {
|
|
|
|
return (
|
|
|
|
<ReactMarkdown
|
|
|
|
components={{
|
2022-07-17 04:20:19 +00:00
|
|
|
h1: "h2", // h1 is reserved for the page name
|
|
|
|
h2: "h3",
|
|
|
|
h3: "h4",
|
|
|
|
h4: "h5",
|
|
|
|
h5: "h6",
|
2022-06-11 03:08:49 +00:00
|
|
|
img: undefined, // images reveal the IP of the user to third parties!
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{code}
|
|
|
|
</ReactMarkdown>
|
|
|
|
)
|
|
|
|
})
|
2022-07-16 14:12:29 +00:00
|
|
|
FestaMarkdownRenderer.displayName = "FestaMarkdownRenderer"
|