Remove unnecessary restrictions on HTML handling (#36548)

pull/36571/head^2
Claire 1 month ago committed by GitHub
parent c40648f7b3
commit 9f7075a0ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -38,7 +38,7 @@ export const HandledLink: FC<HandledLinkProps & ComponentProps<'a'>> = ({
{children}
</Link>
);
} else if ((text.startsWith('@') || prevText?.endsWith('@')) && mention) {
} else if (mention) {
// Handle mentions
return (
<Link

@ -219,7 +219,7 @@ class StatusContent extends PureComponent {
{children}
</HandledLink>
);
} else if (element instanceof HTMLParagraphElement && element.classList.contains('quote-inline')) {
} else if (element.classList.contains('quote-inline')) {
return null;
}
return undefined;

Loading…
Cancel
Save