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

Popular posts from this blog

ios - Change Storyboard View using Seague -

inversion of control - Autofac named registration constructor injection -

verilog - Systemverilog dynamic casting issues -