Update packages/core-components/src/components/MarkdownContent/MarkdownContent.tsx
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
@@ -113,7 +113,12 @@ const components: Options['components'] = {
|
||||
|
||||
a: ({ href, children, title, target, rel }) =>
|
||||
href ? (
|
||||
<Link to={href} title={title} ...(target ? { target } : {}) ...(rel ? { rel } : {})>
|
||||
<Link
|
||||
to={href}
|
||||
title={title}
|
||||
{...(target ? { target } : {})}
|
||||
{...(rel ? { rel } : {})}
|
||||
>
|
||||
{children}
|
||||
</Link>
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user