Reputation: 3450
I had a question regarding Github's ordering of repository entries. My repository looks like this:
If you notice, "ch2" should come after "ch1," and 10 11 should go at the end. I've read that Github currently doesn't support numerical ordering, and that there are "tricks" such as adding spaces at the end, but that doesn't seem to work.
I was wondering does anybody either know a trick or solution for this inconvenience?
Thank you.
Upvotes: 3
Views: 1352
Reputation: 970
But this order is lexicographical (or better ASCIIbetical)
I would recommend to rename the chapters with fixed number width, such as ch01
.
Upvotes: 3