We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58d405e commit b8107e1Copy full SHA for b8107e1
1 file changed
apps/about/templates/about/faq_list.html
@@ -1,5 +1,7 @@
1
{% extends "about/base.html" %}
2
3
+{% load utils %}
4
+
5
{% block title %}Asociación - {{ block.super }}{% endblock %}
6
7
{% block body_class %}faq-index{% endblock %}
@@ -17,7 +19,7 @@ <h1 class="title">FAQ</h1>
17
19
<a class="dyn-anchor-link" href="#{{ faq.question|slugify }}"><i class="fas fa-link"></i></a>
18
20
</div>
21
<div class="faq-answer">
- <p>{{ faq.answer|linebreaksbr }}</p>
22
+ <p>{{ faq.answer|as_markdown }}</p>
23
24
</article>
25
{% endfor %}
0 commit comments