diff --git a/notes-import.scpt b/notes-import.scpt index 5fe3d5f..d5b0ff8 100644 --- a/notes-import.scpt +++ b/notes-import.scpt @@ -35,7 +35,7 @@ folderContents.forEach(function(item) { var note = notesApp.Note({ 'name': item, - 'body': fileContents + 'body': fileContents.replace(/\n/g,'
') }) notesApp.folders[0].notes.push(note)