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

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -