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 4253f7c commit 0fabb15Copy full SHA for 0fabb15
stories/remark-component.stories.tsx
@@ -43,7 +43,7 @@ $$`
43
44
export const MixedHTMLSanitized = () => (
45
<Remark
46
- remarkToRehypeOptions={{ allowDangerousHTML: true }}
+ remarkToRehypeOptions={{ allowDangerousHtml: true }}
47
rehypePlugins={[rehypeRaw, rehypeSanitize]}
48
>
49
{text(
stories/remark-hook.stories.tsx
@@ -56,7 +56,7 @@ export const MarkdownWithMath = () => {
56
57
export const MixedHTMLSanitized = () => {
58
const [reactContent, setMarkdownSource] = useRemark({
59
- remarkToRehypeOptions: { allowDangerousHTML: true },
+ remarkToRehypeOptions: { allowDangerousHtml: true },
60
rehypePlugins: [rehypeRaw, rehypeSanitize],
61
});
62
const markdownSource = text(
0 commit comments