highlight_auto - Twig Filter
This Twig filter creates server-side syntax highlighting of the given code via
highlight.php. It works the same way as the
highlight filter, except the programming language will be auto-detected.
{# code contains some C++ code #}
{% set highlighted = code|highlight_auto %}
{% set code_attributes = attrs()
.addClass('hljs')
.addClass(highlighted.language)
%}
<pre><code{{{ code_attributes }}>
{{- highlighted.value|raw -}}
</code></pre>Optionally you can pass an array of allowed program languages for the auto-detection as an argument.
<pre><code>{{ code|highlight_auto(['C', 'C#', 'C++']) }}</code></pre>Note: the filter returns a Contao\CoreBundle\Twig\Runtime\HighlightResult instance, which is just a thin wrapper for
Highlight\HighlightResult, adding a __toString() method, so that you can also use {{ highlighted|raw }}.