I saw an error in the developer console regarding a parsing problem.
A user had a note which had the [ ] characters within the title. This was causing my parsing to separate content/title to fail, since Java was expecting a regular expression, where [ and ] are special characters.
A quick little change to my logic, to use text length of “replaceFirst” and the problem looks to be fixed, so that’s it for Simple Lister v0.6!