From b7cb95f1d2ed85b970a877cfd930856e2716fd30 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 24 Mar 2022 08:51:26 +0300 Subject: notes: use sort_natural instead of sort --- notes/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notes/index.html') diff --git a/notes/index.html b/notes/index.html index 42ff009..db65de9 100644 --- a/notes/index.html +++ b/notes/index.html @@ -10,7 +10,7 @@ navbar: {% comment %} Sorting can be done in _config.yml with Jekyll 4.0 or later. {% endcomment %} - {% assign note_list = site.notes | sort: 'title' %} + {% assign note_list = site.notes | sort_natural: 'title' %} {% for note in note_list %}
  • {{ note.title }}
  • {% endfor %} -- cgit v1.2.3