SolidJSS
SolidJS3y ago
68 replies
Dog

Anyone using solid-social with solid-markdown?

I'm trying to figure out how to get solid-social to work with solid-markdown, if anyone is using both and could help it'd be much appreciated.

I have tried:
import SolidMarkdown from "solid-markdown";
import { YouTube } from "solid-social";

<SolidMarkdown
  components={{
    YouTube: (props) => (
      <YouTube {...props} />
    )
  }}
  children={markdown}
/>

markdown containing:
## Title
---
<YouTube youTubeId="C0DPdy98e4c" />

The title converts from markdown to html fine
Was this page helpful?