I have the following code that renders a string into HTML output. How can I stop it from escaping the text for HTML?
$template = \'{{ who }} bar\'; $params = arr
I dug through the Twig code and found that this works fine:
$twig = new \Twig_Environment(new \Twig_Loader_String, array( 'autoescape' => false ));