{% extends 'layout.html.twig' %} {% block body %}
{% if error is defined %}

{{ error }}

{% endif %} {% if highlights|length > 0 %}
{% for highlight in highlights %}
{% if highlight.pubkey %} {% else %} Anonymous {% endif %}
{{ highlight.created_at|date('M j, Y') }}
{% if highlight.context %} {# Render markdown to HTML first, then wrap highlight substring in a span. #} {% set htmlContext = highlight.context|markdown_to_html %} {% if highlight.content in highlight.context %} {% set wrapper = '' ~ highlight.content ~ '' %} {# Replace occurrences in rendered HTML and output raw HTML #} {% set rendered = htmlContext|replace({ (highlight.content): wrapper }) %} {{ rendered|raw }} {% else %}
{{ htmlContext|raw }}
{{ highlight.content }}
{% endif %} {% else %} {{ highlight.content }} {% endif %}
{% endfor %}
{% else %}

No highlights found. Check back later!

{% endif %}
{% endblock %}