For anyone who's curious, I worked out a method to make the plain text dates sortable.
- First, in Aeon preferences, I chose Preferred Date Format : Sortable. I then synced my project.
- Back in Scriv, I found that the only thing preventing my dates from sorting was the day of the week in the front of the date string.
- I ran a Project Replace affecting custom metadata only, using regular expressions which I include below. Now my dates sort in Scriv, and Aeon is perfectly happy with them!
Search for:
Code: Select all
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (.*)$
Replace with:
Code: Select all
$2 $1