{% extends "base.html" %} {% block title %}{{ capsule.title or user.username + "'s capsule" }}{% endblock %} {% block content %}
by {{ user.username }} — last updated {{ capsule.updated_at.strftime('%Y-%m-%d') }} — raw .gmi
{% set in_pre.open = True %}{% endif %}
{% elif in_pre.open %}{{ line }}
{% elif line.startswith('=> ') %}
{% set parts = line[3:].split(None, 1) %}
{% elif line.startswith('### ') %}{{ line[4:] }}
{% elif line.startswith('## ') %}{{ line[3:] }}
{% elif line.startswith('# ') %}{{ line[2:] }}
{% elif line.startswith('* ') %}• {{ line[2:] }}
{% elif line.startswith('> ') %}{{ line[2:] }}
{% elif line.strip() == '' %}
{% else %}{{ line }}
{% endif %}
{% endfor %}
{% if in_pre.open %}{% endif %}