Rename Node's body field to "text"

This commit is contained in:
Juno Takano 2025-12-10 10:25:32 -03:00
commit 32ea0f93c3
5 changed files with 23 additions and 22 deletions

View file

@ -6,7 +6,7 @@
<section>
<h1>{{ title }}</h1>
<code style="display: inline;">ID: {{ id }}</code>
{% for line in body | split(pat="\n") %}
{% for line in text | split(pat="\n") %}
{% if line %} <p>{{ line }}</p> {% endif %}
{% endfor %}
</section>