{% extends "base.html" %} {% block title %}{{ article.front_matter.title }} โ€” MemForge{% endblock %} {% block content %}
Knowledge / {{ article.front_matter.title }}
{{ article.front_matter.type }} {{ article.front_matter.confidence }} {{ article.front_matter.scope }} {% for tag in article.front_matter.tags %} #{{ tag }} {% endfor %}

{{ article.front_matter.title }}

Created {{ article.front_matter.created.strftime('%Y-%m-%d') }} ยท Updated {{ article.front_matter.updated.strftime('%Y-%m-%d') }} ยท id: {{ article.front_matter.id }}

{% if pinned %} {% else %} {% endif %}
Edit
{{ article.body | markdown | safe }}
{% if article.front_matter.refs %}
Code refs
{% for ref in article.front_matter.refs %}
{{ ref.path }}{% if ref.revision %} @ {{ ref.revision[:8] }}{% endif %}
{% endfor %}
{% endif %} {% if article.front_matter.links %}
Related
{% for link in article.front_matter.links %} {% set slug = link | replace('[[', '') | replace(']]', '') | replace('concepts/', '') | replace('decisions/', '') %} {{ link }} {% endfor %}
{% endif %}
โ† Back to Knowledge
{% endblock %}