From ebe0f5cfc0fc209e0a4aba326086438759369cc1 Mon Sep 17 00:00:00 2001 From: jutty Date: Tue, 9 Dec 2025 21:39:28 -0300 Subject: [PATCH] Split Node body in several paragraph elements --- templates/node.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/node.html b/templates/node.html index fca4fbd..71f341c 100644 --- a/templates/node.html +++ b/templates/node.html @@ -6,7 +6,9 @@

{{ title }}

ID: {{ id }} -

{{ body }}

+ {% for line in body | split(pat="\n") %} + {% if line %}

{{ line }}

{% endif %} + {% endfor %}
{% if connections or incoming %}