Google Keep Notes sorter 2020-03-29

Alphabetise Google Keep Notes using AutoShare and Tasker

  1. Google Keep Notes sorter - with alphanumeric sort

    Nightcustard
    Change since yesterday (version 29-03-2020):

    javascriptlet code changed from:
    astext = astext.sort();
    to:
    astext = astext.sort(new Intl.Collator('en',{numeric:true, sensitivity:'accent'}).compare);

    Code sourced from https://stackoverflow.com/questions/4340227/sort-mixed-alpha-numeric-array/4340339#4340339 and many thanks to Code Maniac who posted it.
    This now provides a 'proper' sort, handling letters and numbers, treating upper and lower case letters properly.
    There is no...