216

How can I display a string that contains HTML tags in a twig template?

My PHP variable contains this HTML and text:

$word = '<b> a word </b>';

When I do this in my twig template:

{{ word }}

I get this:

&lt;b&gt; a word &lt;b&gt;

I want this instead:

<b> a word </b>

Is it possible to get this easily?

1
  • I won't add this as an answer, but an alternative approach for people reaching this question is to store values in Markdown, like StackOverflow does. Then you could create a Twig filter with automatic escaping, since you can trust the HTML to be safe. No raw needed, and your stored values are human readable! Commented Jul 15, 2019 at 21:13

5 Answers 5

470

Use raw keyword, https://twig.symfony.com/doc/3.x/api.html#escaper-extension

{{ word | raw }}
Sign up to request clarification or add additional context in comments.

2 Comments

When doing a replace it is not working for me. {{ word | replace( {(word_to_replace) : '<b>' ~ (word_to_replace) ~ '</b>' }) | raw }} Any idea?
UPDATE: I solved it by adding it to another variable using 'set', then {{ word | raw }} works fine.
90

You can also use:

{{ word|striptags('<b>')|raw }}

so that only <b> tag will be allowed.

2 Comments

I'd say this version is preferable if you want to allow only a few tags.
How do you allow multiple tags?
42
{{ word|striptags('<b>,<a>,<pre>')|raw }}

if you want to allow multiple tags

Comments

1

if you don't need variable, you can define text in
translations/messages.en.yaml :
CiteExampleHtmlCode: "<b> my static text </b>"

then use it with twig:
templates/about/index.html.twig
… {{ 'CiteExampleHtmlCode' }}
or if you need multilangages like me:
… {{ 'CiteExampleHtmlCode' | trans }}

Let's have a look of https://symfony.com/doc/current/translation.html for more information about translations use.

Comments

0

Worked for me only with "render" before striptags:

node--mycontenttype.html.twig:

{{ content.field_my_field|render|striptags }}

1 Comment

Based on your filename and usage of "render", I assume this is specifically for Drupal. The initial question was tagged on Symfony.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.