Commit f79dbf8e by mmagi Committed by GitHub

fix: 修复Markdown渲染加粗链接时显示[object Object]的问题 (#5839)

parent e1b616a4
...@@ -202,7 +202,7 @@ const A = ({ ...@@ -202,7 +202,7 @@ const A = ({
); );
} }
return <Link {...props}>{content || props?.href}</Link>; return <Link {...props}>{children || props?.href}</Link>;
}; };
export default React.memo(A); export default React.memo(A);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment