ユーザー入力テキストをLinkifyする時に target="_blank" rel="noopener" を付与する

This commit is contained in:
shibafu 2019-06-24 20:19:48 +09:00
parent c2da5eef9d
commit 47eec65101

View File

@ -35,7 +35,7 @@ class Formatter
*/
public function linkify($text)
{
return $this->linkify->processUrls($text);
return $this->linkify->processUrls($text, ['attr' => ['target' => '_blank', 'rel' => 'noopener']]);
}
/**