clarkwinkelmann
Thanks for your response. What if i just remove " $dom->saveChanges();", so all links are passed as dofollow, does any composer update overwrites this changes.
protected function configureExternalLinks(Configurator $configurator)
{
$dom = $configurator->tags['URL']->template->asDOM();
foreach ($dom->getElementsByTagName('a') as $a) {
$a->setAttribute('target', '_blank');
$a->setAttribute('rel', 'nofollow');
}
$dom->saveChanges();
}