Twig code in Prism Highlighter with Twig processing enabled

Is there a way to use Twig code in Prism Highlighter when Twig processing for the page is enabled? Eg.

```twig
{{ 'now'|date('Y') }}
```

Output: `{{ 'now'|date('Y') }}`

I’d want it to render on page:

{{ 'now'|date('Y') }}

Output: 2021

But now I’m getting

2021

Output: 2021

Simply put, I’d like to dispaly Twig code litterally (without processing) if it’s in the ```twig ``` block

@Karmalakas, Try the following:

```twig

{% verbatim %}
{{ 'now'|date('Y') }}
{% endverbatim %}

```

This will yield:

{{ ‘now’|date(‘Y’) }}

Amazing :slight_smile: That’s exactly what I wanted :slight_smile: Now I remember reading about verbatim some time ago on Twig docs :slight_smile: Thank you