Add custom function to twig
$makeKey = new Twig_SimpleFunction('makeKey', function ($string) {
$clear = str_replace(' ','-',preg_replace('/\s+/', ' ',strtolower(preg_replace('/[^a-zA-Z0-9\s]/', '', strip_tags($string)))));
return $clear;
});
$twig->addFunction($makeKey);