{% if data[0]|length > 1 %} {# The platform returns a table for the explanation (e.g. MySQL), display all columns #}
| {{ label }}{% endfor %} | 
|---|
| {{ item|replace({',': ', '}) }}{% endfor %} | 
        {%- for row in data -%}
            {{ row|first }}{{ "\n" }}
        {%- endfor -%}
    
{% endif %}