Faster CI runs

This commit is contained in:
Fedor Indutny 2025-08-07 10:33:21 -07:00 committed by GitHub
commit ec8d6a7359
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 242 additions and 207 deletions

View file

@ -272,7 +272,13 @@ function renderNode({
!isLinkSneaky(node.url)
) {
return (
<a key={key} className={formattingClasses} href={node.url}>
<a
key={key}
className={formattingClasses}
href={node.url}
target="_blank"
rel="noreferrer"
>
{content}
</a>
);