{% extends 'areas/wysiwyg/editables.html.twig' %}
{% block view %}
{% if contentInclude is not defined %}
{% set wysiwygStretchSelectValue = wysiwygStretchSelect.isChecked() %}
{% set maxWidthSelectValue = maxWidthSelect.isChecked() %}
{% endif %}
<div class="c-wysiwyg e-rte
{% if wysiwygStretchSelectValue == true %}flex-fill pb-0{% endif %}
{% if maxWidthSelectValue == true %}c-wysiwyg__max-width{% endif %}
{{rowPaddingLeftRight}} {{rowPaddingTopBottom}} {{componentMargin}} background-{{wysiwygBackground}}"
>
{{ rte | raw }}
</div>
{% endblock %}