diff options
Diffstat (limited to 'webui/src')
-rw-r--r-- | webui/src/components/Content/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webui/src/components/Content/index.tsx b/webui/src/components/Content/index.tsx index 75360bb6..809ae818 100644 --- a/webui/src/components/Content/index.tsx +++ b/webui/src/components/Content/index.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import gemoji from 'remark-gemoji'; import html from 'remark-html'; import parse from 'remark-parse'; import remark2react from 'remark-react'; @@ -12,6 +13,7 @@ type Props = { markdown: string }; const Content: React.FC<Props> = ({ markdown }: Props) => { const content = unified() .use(parse) + .use(gemoji) .use(html) .use(remark2react, { remarkReactComponents: { |