{% from 'allura:templates/jinja_master/lib.html' import email_gravatar, abbr_date with context %}
{{g.markdown.convert(h.really_unicode(value.message.split('\n')[0]))}}
{{g.markdown.convert(h.really_unicode('\n'.join(value.message.split('\n')[1:])))}}

Authored by {% if value.author_url %} {{email_gravatar(value.authored.email, title=h.really_unicode(value.authored.name), size=16)}} {{h.really_unicode(value.authored.name)}} {% else %} {{email_gravatar(value.authored.email, title=h.really_unicode(value.authored.name), size=16)}} {{h.really_unicode(value.authored.name)}} {% endif %} {% if value.authored.date %}{{abbr_date(value.authored.date)}}{% endif %} {% if value.committed.email != value.authored.email %} Committed by {% if value.committer_url %} {{email_gravatar(value.committed.email, title=h.really_unicode(value.committed.name), size=16)}} {{h.really_unicode(value.committed.name)}} {% else %} {{email_gravatar(value.committed.email, title=h.really_unicode(value.committed.name), size=16)}} {{h.really_unicode(value.committed.name)}} {% endif %} {% if value.committed.date %}{{abbr_date(value.committed.date)}}{% endif %} {% endif %}