Support hard line breaks in markdown notes

This commit is contained in:
2024-04-05 14:18:35 -04:00
parent 0ee803dc78
commit b4919f0e82
3 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -138,6 +138,6 @@ func editNote(baseNote []string) ([]string, bool) {
if !reflect.DeepEqual(offline.RemoveTrailingEmptyStrings(note), baseNote) {
return note, true
} else {
return note, false
return []string{}, false
}
}