dokufreaks / plugin-pagelist

Lists DokuWiki pages in a nice looking table or unordered list.
http://dokuwiki.org/plugin:pagelist
GNU General Public License v2.0
30 stars 21 forks source link

Natural sort order #122

Closed WJTrevino closed 1 year ago

WJTrevino commented 3 years ago

Can the option to sort with "natural" ordering be added so titles like 2.10 can be sorted below 2.2? This could be minimally invasive by adding an nsort option which would use strnatcmp instead of strcmp.

$fnc = create_function('$a, $b', 'return strnatcmp(noNS($a["id"]), noNS($b["id"])); ');
Klap-in commented 1 year ago

Fixed by #153

sortby=title will sort by title which uses natural sorting with collator(=with support of sorting in the language of your wiki).