I’ve a plain text field, where I’ve added few text in wrapped in tag. I’ve tried to get the processed html text in the twig by using
{{ content.field_front_page_description|field_value }} {% set text = content.field_front_page_description|field_value %} {% set build = { '#type': 'processed_text', '#text': text|render, '#format': 'full_html', } %} {{ kint(build) }} {{ build }}
But it is returning an array with not processed text. How do I do that