We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a10dee commit e92d030Copy full SHA for e92d030
1 file changed
src/components/SimpleMarkdown.tsx
@@ -81,7 +81,10 @@ type SimpleMarkdownProps = {
81
htmlMarkup?: string
82
}
83
84
-export function SimpleMarkdown({ rawContent, htmlMarkup }: SimpleMarkdownProps) {
+export function SimpleMarkdown({
85
+ rawContent,
86
+ htmlMarkup,
87
+}: SimpleMarkdownProps) {
88
const rendered = React.useMemo(() => {
89
if (rawContent) {
90
return renderMarkdown(rawContent)
0 commit comments