Tuesday, April 6, 2021

Drupal 8 - display HTML in twig template

Drupal 8 - display HTML in twig template

{% set build = {
    '#type''processed_text',
    '#text''<h1>Raw HTML here</h1>',
    '#format''full_html',
    }
%}
{{ build }} HAPPY CODING...

No comments:

Post a Comment

Workflow of WordPress project in a team with Git

1. We should not push any Wordpress core folders or files to github. 2. Only push custom theme and custom plugin into github. 3. So, in this...