Merge branch 'fix/scaffolder-markdown-links-new-tab' of https://github.com/Vivek1819/backstage into fix/scaffolder-markdown-links-new-tab
Signed-off-by: Vivek Hipparkar <vivekhipparkar@gmail.com>
This commit is contained in:
@@ -111,9 +111,9 @@ const components: Options['components'] = {
|
||||
h5: headingRenderer,
|
||||
h6: headingRenderer,
|
||||
|
||||
a: ({ href, children, ...props }) =>
|
||||
a: ({ href, children, title, target, rel }) =>
|
||||
href ? (
|
||||
<Link {...(props as any)} to={href}>
|
||||
<Link to={href} title={title} target={target} rel={rel}>
|
||||
{children}
|
||||
</Link>
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user