diff options
Diffstat (limited to 'webui/src/components/Content/index.tsx')
-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 809ae818..e4018809 100644 --- a/webui/src/components/Content/index.tsx +++ b/webui/src/components/Content/index.tsx @@ -5,6 +5,7 @@ import parse from 'remark-parse'; import remark2react from 'remark-react'; import unified from 'unified'; +import AnchorTag from './AnchorTag'; import BlockQuoteTag from './BlockQuoteTag'; import ImageTag from './ImageTag'; import PreTag from './PreTag'; @@ -19,6 +20,7 @@ const Content: React.FC<Props> = ({ markdown }: Props) => { remarkReactComponents: { img: ImageTag, pre: PreTag, + a: AnchorTag, blockquote: BlockQuoteTag, }, }) |