We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea6c3b3 commit e4e5e62Copy full SHA for e4e5e62
src/components/mdxComponents/anchor.js
@@ -3,7 +3,7 @@ import * as React from "react";
3
const AnchorTag = ({ children: link, ...props }) => {
4
if(link) {
5
return (
6
- <a href={props.href} target="_blank">{link}</a>
+ <a href={props.href} target="_blank" rel="noopener">{link}</a>
7
);
8
} else {
9
return null;
0 commit comments