{% block markdown %} {% apply markdown_to_html %} {{ note.getContent() }} {% endapply %} {% endblock %} {#
#} {# {% for other in get_note_other_content(note) %} #} {# {% include '/'~ other.name ~ '/view.html.twig' with {'vars': other.vars} only %} #} {# {% endfor %} #} {#
#} {% if hide_attachments is not defined %}
{% for attachment in note.getAttachments() %} {% include '/attachments/view.html.twig' with {'attachment': attachment, 'note': note} only%} {% endfor %}
{% endif %}
{% if replies is defined %}
{% for conversation in replies %} {% include '/note/view.html.twig' with {'note': conversation['note'], 'skip_reply_to': true, 'have_user': have_user, 'replies': conversation['replies']} only %} {% endfor %}
{% endif %}