How to batch edit notes? Need to do a very simple edit to all notes (replace character with newline)
I imported notes from a different app. Suppose the old note was:
"""
SUMMARY
- Here is a summary
- And another point
"""
The note is imported as:
"""
SUMMARY -Here is a summary -And another point
""""
So I just need to convert " -" to "\n-"
"""
SUMMARY
- Here is a summary
- And another point
"""
The note is imported as:
"""
SUMMARY -Here is a summary -And another point
""""
So I just need to convert " -" to "\n-"