['html']] // Reference: https://twig.symfony.com/doc/3.x/advanced.html#automatic-escaping new TwigFilter('show_links', [$this, 'showLinks']), ]; } public function showLinks(string $texte): string { return preg_replace('#((https?|ftp)://(\S*?\.\S*?))([\s)\[\]{},;"\':<]|\.\s|$)#i', "$1$4", $texte); } }