diff --git a/packages/console/src/components/Markdown/index.tsx b/packages/console/src/components/Markdown/index.tsx index 640bd08ec..414873e09 100644 --- a/packages/console/src/components/Markdown/index.tsx +++ b/packages/console/src/components/Markdown/index.tsx @@ -57,6 +57,15 @@ const Markdown = ({ className, children }: Props) => { img: ({ src, alt }) => { return ; }, + a: ({ href, children }) => { + const isExternalLink = href?.startsWith('http'); + + return ( + + {children} + + ); + }, h1: ({ children }) =>

{children}

, h2: ({ children }) =>

{children}

, h3: ({ children }) =>

{children}

,