Remove whitespace in root block by dirkluijk · Pull Request #254 · braincrafted/bootstrap-bundle

This PR removes some unnecessary whitespace in the Menu twig template.

In the root block it's important to have no whitespace if the menu is empty, so that you can check if a block must be rendered.

e.g. you can do

{% set _my_meny    = block('my_menu') %}
{% if _my_menu is not empty %}
    <div class="my-meny">
        {{ _my_menu|raw }}
    </div>
{% endif %}