Code Editor Syntax Highlighter Example
SQL
SELECT *, 123, 'abc' FROM "table"
JS
const a = 123.4; const b = 'hello'; if (a === b) { console.log("oh no!"); }
Twig
{% if users|length > 0 %}
{% for user in users %}
{{ user.username|e }}
{% endfor %}
{% endif %}