{% for faq in site.data.faq_yaml.frequently_asked_questions %} {% if faq.type == include.type %} {% if faq.question != null and faq.question != "" %}

{{ faq.question }}

{% capture editable_part %} {{ faq.link_description }} {% endcapture %} {% if faq.answer contains 'aaaa ' %} {{ faq.answer | replace: 'aaaa ', editable_part }} {% else %} {{ faq.answer }} {% endif %}
{% endif %} {% endif %} {% endfor %}