{% for row in params.rows %}
{% for cell in row %}
{% if loop.first and params.firstCellIsHeader %}
{% elseif loop.first %}
{{ cell.html | safe if cell.html else cell.text }} |
{% else %}
{{ cell.html | safe if cell.html else cell.text }} |
{% endif %}
{% endfor %}
{% endfor %}