From ced121edc522fe681d4d8fab7861455f3e0d8252 Mon Sep 17 00:00:00 2001 From: = Date: Sat, 30 May 2020 18:12:37 -0400 Subject: [PATCH] tag array for json --- jrnl/plugins/json_exporter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jrnl/plugins/json_exporter.py b/jrnl/plugins/json_exporter.py index a5c70b97..a5f58172 100644 --- a/jrnl/plugins/json_exporter.py +++ b/jrnl/plugins/json_exporter.py @@ -20,6 +20,7 @@ class JSONExporter(TextExporter): "body": entry.body, "date": entry.date.strftime("%Y-%m-%d"), "time": entry.date.strftime("%H:%M"), + "tags": entry.tags, "starred": entry.starred, } if hasattr(entry, "uuid"):