• {{ r.title or '(無標題)' }}
    {% if r.hybrid_score is not none %} MATCH {{ '%.3f' % r.hybrid_score }} {% endif %}
    {% if r.source_type %}{{ r.source_type }}{% endif %} {% if r.category %}{{ r.category }}{% endif %} {% if r.pub_date %}{{ r.pub_date }}{% endif %}
    {% if r.tags %}
    {% for t in r.tags[:5] %} #{{ t }} {% endfor %}
    {% endif %} {% if r.matched_chunks %}
    {% for mc in r.matched_chunks %} P{{ mc.chunk_index + 1 }} {{ mc.snippet|safe }} {% endfor %} {% set extra = (r.chunk_hits or 0) - (r.matched_chunks|length) %} {% if extra > 0 %} + 還有 {{ extra }} 段相關內容 ... {% endif %}
    {% elif r.content_snippet %}

    {{ r.content_snippet|safe }}

    {% endif %}