From 99426cecd2c0442879c15a982afd5a5796bef70b Mon Sep 17 00:00:00 2001 From: Aaron Lichtman Date: Fri, 8 Nov 2019 01:49:16 +0100 Subject: [PATCH] Correctly indent first line of multiline entry --- jrnl/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jrnl/util.py b/jrnl/util.py index 915f50cc..07db329a 100644 --- a/jrnl/util.py +++ b/jrnl/util.py @@ -256,6 +256,7 @@ def highlight_tags_with_background_color(entry, text, color, bold=False): else: # Otherwise just append it. final_text += " " + colorized_piece + final_text = final_text.lstrip() previous_piece = piece