Hi there, I have page where I’m displaying list of github libs like this:
-```
{% for p in page.find(’/libraries’).header.libraries %}
{{ p.title }}
{{ p.description|markdown }}libraries are stored in .md file like this:
libraries:
- title: "Spring"
category: animation
description: "A library to simplify iOS animations."
link: https://github.com/MengTo/Spring
I’ve found that I can easily show stars of particular library like this:
{{ github.client.api('repo').show('getgrav', 'grav')['stargazers_count'] }}
How can I order my list of libraries based on stars of each library?