From 43ad7ff17e037f6a86fd1ec91b943336f82cd09b Mon Sep 17 00:00:00 2001 From: Matt Wiseley Date: Sat, 18 Oct 2025 11:01:04 -0400 Subject: [PATCH] HTML formatting tweaks --- todoist_backup_template.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/todoist_backup_template.html b/todoist_backup_template.html index a89eeaf..1df672d 100644 --- a/todoist_backup_template.html +++ b/todoist_backup_template.html @@ -41,11 +41,11 @@
{% for task in project.tasks %}
- {{ task.content | markdown | safe }}
+
{{ task.content | markdown | safe }}
{% if task.description %} -
{{ task.description | markdown | safe }}
+
{{ task.description | markdown | safe }}
{% endif %} - +
{% set meta_fields = [] %} {% if task.id is not none %} {% set _ = meta_fields.append('ID: ' ~ task.id) %} @@ -73,7 +73,7 @@ {% set _ = meta_fields.append('Priority: ' ~ task.priority) %} {% endif %} {{ meta_fields|join(' | ') }} -
+
{% if task.attachments %}
Attachments: @@ -101,11 +101,11 @@
{% for task in project.completed_tasks %}
- {{ task.content | markdown | safe }}
+
{{ task.content | markdown | safe }}
{% if task.description %} -
{{ task.description | markdown | safe }}
+
{{ task.description | markdown | safe }}
{% endif %} - +
{% set meta_fields = [] %} {% if task.id is not none %} {% set _ = meta_fields.append('ID: ' ~ task.id) %} @@ -146,7 +146,7 @@ {% set _ = meta_fields.append('Completed: ' ~ completed_fmt) %} {% endif %} {{ meta_fields|join(' | ') }} -
+
{% if task.attachments %}
Attachments: