From 3ddc5ac7306b31b115c3982ef3a279caa66617f2 Mon Sep 17 00:00:00 2001 From: KC Maddever Date: Mon, 23 Nov 2020 12:26:44 +0800 Subject: [PATCH] Fix issue with notes with newlines not being imported to Evernote --- standard-notes-to-enex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standard-notes-to-enex.py b/standard-notes-to-enex.py index 5b270f6..5d93af9 100755 --- a/standard-notes-to-enex.py +++ b/standard-notes-to-enex.py @@ -14,7 +14,7 @@ def text_from_html(title, text): temp_text = text.replace(title + '\n\n \n\n', '') # Parse to html temp_text = html.escape(temp_text) - temp_text = temp_text.replace('\n', '
') + temp_text = temp_text.replace('\n', '
') return temp_text final_file = ''' -- 2.54.0