Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / modules / filter / templates / text-format-wrapper.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation for a text format-enabled form element.
5  *
6  * Available variables:
7  * - children: Text format element children.
8  * - description: Text format element description.
9  * - attributes: HTML attributes for the containing element.
10  * - aria_description: Flag for whether or not an ARIA description has been
11  *   added to the description container.
12  *
13  * @see template_preprocess_text_format_wrapper()
14  *
15  * @ingroup themeable
16  */
17 #}
18 <div class="js-text-format-wrapper js-form-item form-item">
19   {{ children }}
20   {% if description %}
21     <div{{ attributes }}>{{ description }}</div>
22   {% endif %}
23 </div>