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:
Vivek Hipparkar
2026-03-05 02:50:53 +05:30
@@ -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>
) : (