react-markdown-preview
react-markdown-preview copied to clipboard
Some emoji not supported
I've tried :sparkles: but doesn't seem to render it correctly. It renders the text. When the unicode is rendered it displays ok.
@OttlikG Example https://codesandbox.io/embed/react-markdown-preview-forked-voioz4?fontsize=14&hidenavigation=1&theme=dark
import React from "react";
import MarkdownPreview from "@uiw/react-markdown-preview";
+ import emoji from "remark-emoji";
const source = `## Markdown Preview
:sparkles:
`;
function Demo() {
return (
<div data-color-mode="light">
<MarkdownPreview
source={source}
+ remarkPlugins={[emoji]}
/>
</div>
);
}
Yes this solves the issue. Thanks