{%- macro tableRow(label, value, options = {}) -%} {%- set class = options.class|default({}) -%} {%- set prepend = options.prepend|default({}) %} {% set append = options.append|default({}) -%} {% apply spaceless %} {% if label and value %} [ {# { text: '{{- label -}}', color: '#357792' }, #} { text: '{{- label -}}' }, {# { text: '{% if prepend %}{{ prepend }}{% endif %}{{- value -}}{% if append %}{{ append }}{% endif %}', color: '#001118', bold: true }, #} { text: '{% if prepend %}{{ prepend }}{% endif %}{{- value -}}{% if append %}{{ append }}{% endif %}', bold: true }, ], {% endif %} {% endapply %} {%- endmacro -%} {#
#}