use new render_markdown()
function in inbox template
This commit is contained in:
parent
cade47b04a
commit
5c721c1524
1 changed files with 2 additions and 2 deletions
|
@ -13,9 +13,9 @@
|
|||
<div class="card mb-3 mt-3 alert-placeholder question" id="question-{{ question.id }}">
|
||||
<div class="card-header">
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<h5 class="card-title mt-1 mb-1 markdown-content">
|
||||
<h5 class="card-title mt-1 mb-1 markdown-content w-75">
|
||||
{% if question.from_who %}
|
||||
{{ question.from_who | render_markdown }}
|
||||
{{ render_markdown(question.from_who, fromWho=True) }}
|
||||
{% else %}
|
||||
<i class="bi bi-incognito" data-bs-toggle="tooltip" data-bs-title="This question was asked anonymously" data-bs-placement="top"></i> {{ cfg.anonName }}
|
||||
{% endif %}
|
||||
|
|
Loading…
Add table
Reference in a new issue