{% for paragraph in card.description %}

{{ paragraph }}

{% endfor %}
{% for tag in card.progress %} {% if tag.type == 'a' %}

<{{ tag.type }} href='{{ tag.href }}'>{{ tag.text }}

{% elsif tag.type == 'br' %}
{% elsif tag.type == 'ol' %}
    {% for li in tag.lis %}
  1. {{ li }}
  2. {% endfor %}
{% elsif tag.type == 'ul' %}
    {% for li in tag.lis %}
  • {{ li }}
  • {% endfor %}
{% elsif tag.type == 'img' %} {% else %} <{{ tag.type }}>{{ tag.text }} {% endif %} {% endfor %}