Merge pull request #3500 from wxy/patch-3

Sorts signs in case-insensitive order.
revert-4113-patch-1
Victor 4 years ago committed by GitHub
commit a2ad4c3d4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      _includes/signatures.html

@ -15,7 +15,7 @@
<field>{{ signature.link | strip | escape }}<field>
{%- endfor -%}
{%- endcapture -%}
{%- assign sorted_signs = signs | split: '<array>' | sort -%}
{%- assign sorted_signs = signs | split: '<array>' | sort_natural -%}
{%- for signature in sorted_signs -%}
{%- assign sign_items = signature | split: '<field>' -%}
{%- if sign_items[2] and sign_items[4] -%}

Loading…
Cancel
Save