Drupal 8 Twig removes all style tags from variable during rendering -
how retain content of variable added during preprocess_page.
e.g. style tags needs added while variable rendering in twig files.
class maisexpertblock extends blockbase { public function build() { return array( //'#cache' => array('max-age' => 0), '#type' => 'inline_template', '#template' => '{{ somecontent | raw }}', '#context' => array('somecontent' => 'your content <html></html> code'), ); } }
Comments
Post a Comment