Skip to content

Changed to spaceless filter instead of tag.

Use spaceless filter instead in Drupal 8 too to help new sites become compatible with Twig 3 / Drupal 10. https://twig.symfony.com/doc/3.x/filters/spaceless.html

Before:

{% spaceless %}

{% endspaceless %}

After:

{% apply spaceless %}

{% endapply %}

Merge request reports